所以我有一个名为(“knowledge_base”)的自定义类型,它有一个名为(“section”)的分类法,其中之一是(“狗咬”)。现在我在 example.com/section/dog-bite/ 上,我正在尝试显示此处的帖子。这是我到目前为止所拥有的,所以我不确定缺少什么,但它只显示所有部分的所有帖子。$current = get_queried_object(); $args = array( 'post_type' => 'knowledge_base', 'tax_query' => array( array( 'taxonomy' => 'section', 'field' => $current->slug, 'terms' => $current->name ) ) ); // The Query $the_query = new WP_Query( $args );if ( $the_query->have_posts() ) { echo '<ul>'; while ( $the_query->have_posts() ) { $the_query->the_post(); echo '<li>' . get_the_title() . '</li>'; } echo '</ul>'; } else { // no posts found }应该只有2个帖子
1 回答
慕姐4208626
TA贡献1852条经验 获得超7个赞
检查此代码。
$args = array(
'post_type' => 'knowledge_base',
'tax_query' => array(
array(
'taxonomy' => 'section',
'field' => 'slug', // ‘term_id’, ‘name’, ‘slug’ or ‘term_taxonomy_id’
'terms' => $current->slug, // It's will be $term->slug
)
)
);
// The Query
$the_query = new WP_Query( $args );
if ( $the_query->have_posts() ) {
echo '<ul>';
while ( $the_query->have_posts() ) {
$the_query->the_post();
echo '<li>' . get_the_title() . '</li>';
}
echo '</ul>';
}
- 1 回答
- 0 关注
- 100 浏览
添加回答
举报
0/150
提交
取消