Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「mood」などのカスタム フィールドがあり、「mood」=「grumpy」を持つすべての投稿のタグのリストを表示する必要があります。すべての投稿を取得してから、それぞれのタグを取得せずにこれを行うことは可能ですか?
関数 get_posts(); を使用できます。
$args = array( 'meta_key' => 'mood', 'meta_value' => 'grumpy', ); $your_posts = get_posts( $args );