首先你没有提到你所在州的分类法是什么?第二,当你说“tag”时,你的意思是什么?我的建议是使用元键值对,将帖子标记为特色并基于该查询帖子,但这只是我的偏好。
无论如何,如果我们假设您将状态作为附加分类法,并且将“标记”也作为附加分类法,那么您只需在希望显示“帖子”添加列表的位置包含以下代码:
global $wp_query;
$args = array(
\'posts_per_page\' => 5,
\'tax_query\' => array(
array(
\'taxonomy\' => \'my-custom-tag\',
\'field\' => \'slug\',
\'terms\' => array(\'featured\')
)
)
);
$args = array_merge( $wp_query->query, $args );
$the_query = new WP_Query( $args );
// The Loop
while ( $the_query->have_posts() ) : $the_query->the_post();
echo \'<li>\';
the_title();
echo \'</li>\';
endwhile;
// Reset Post Data
wp_reset_postdata();