我的站点中有多个作者,我只想显示其中一个latest 每个人的帖子,不包括管理员。因此,如果例如:
admin1发布了4篇文章,admin2发布了3篇文章,author1发布了2篇,author2发布了7篇,其中admin1发布了4篇,admin2发布了3篇,其他每个发布了1篇。有什么提示吗?
<?php
get_header();
//Displaying latest post per author on front page
if(have_posts()) :
get_template_part(\'content\', \'postlist\');
else :
get_template_part(\'content\', \'none\');
endif;
get_footer();
?>