我正在尝试为category.php
其中它基于当前类别和元键。
但循环坚持显示其他类别的帖子
global $taxonomy,
$term;
$cats = get_the_category();
$newQuery = new WP_Query( array(
\'cat\' => $cats[0]->term_id,
\'meta_key\' => \'premium_model\',
\'meta_value\' => true,
\'posts_per_page\'=> 24,
\'orderby\' => \'rand\'
) );
if( $newQuery->have_posts() ) {
while( $newQuery->have_posts() ) {
$newQuery->the_post();
// Post Here
}
}
你能告诉我哪里错了吗?