私は簡単なループを作りました。そして、私はクエリのための次の配列があります:
$live_tags = array(
'tag' => 'live',
'showposts' => 5,
'post_type' => 'post',
'post_status' => 'publish',
'orderby' => 'date',
'order' => 'DESC'
);
'tag' => 'live'
と書いてあるところでは、私は尋ねるロジックが必要です。
if ('tag' == 'live' || 'category' == 'candy')
しかし、WP_Query配列内でそれを実行する方法がわかりません。
タグ、またはカテゴリから投稿を取得する方法を知っている人はいますか。
tax_query
が必要です。
$live_tags = array(
'posts_per_page' => 5, // showposts has been deprecated for a long time
'post_type' => 'post',
'post_status' => 'publish',
'tax_query' => array(
'relation' => 'OR',
array(
'taxonomy' => 'post_tag',
'field' => 'slug',
'terms' => 'live',
),
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => 'candy',
),
),
'orderby' => 'date',
'order' => 'DESC'
);
$q = new WP_Query($live_tags);
var_dump($q->request);
{tax} (string)
引数とshowposts
引数はどちらもかなり前から非推奨になっています。私はそれらを使うことをお勧めしません。