如何在WordPress的侧栏中显示选定类别的书籍, 而无需任何插件。
我想在侧栏(网页)中显示其类别通过复选框或诸如此类从小部件(管理员)激活的书籍。
#1
$query = new WP_Query( array(
'post_type' => 'book', // name of post type.
'tax_query' => array(
array(
'taxonomy' => 'Book1', // taxonomy name
'field' => 'term_id', // term_id, slug or name
'terms' => 1, // term id, term slug or term name
)
)
) );
while ( $query->have_posts() ) : $query->the_post();
// do stuff here....
endwhile;
/**
* reset the orignal query
* we should use this to reset wp_query
*/
wp_reset_query();
评论前必须登录!
注册