我需要在默认循环上方的自定义分类页面上显示特色帖子,但不显示特色帖子,而是显示所有帖子
$args = array(
\'posts_per_page\' => 3,
\'post_type\' => \'post\',
\'tax_query\' => array(
array(
\'taxonomy\' => \'city\',
\'field\' => \'term_id\',
),
),
\'meta_query\' => array(
\'key\' => \'is_this_featured\',
\'value\' => \'yes\',
\'compare\' => \'LIKE\',
),
);
$query = new WP_Query( $args );
if ( have_posts() ) :
while ( have_posts() ) : the_post();
// $ids[] = get_the_ID();
the_title();
the_content();
endwhile;
endif;
wp_reset_query();