在模板中创建其他循环,选择要限制每个循环显示的分类法和术语。例如,这将从分类法“流派”,术语“动作”中提取最后5篇帖子:
<?php
$args = array( \'taxonomy\'=>\'genre\',\'term\'=>\'action\',\'posts_per_page\'=>5 );
$action_films = new WP_Query( $args );
while( $action_films->have_posts() ) : $action_films->the_post();
echo \'<li>\';
the_title();
echo \'</li>\';
endwhile;
?>