如果当前作者只有一篇文章,则在单页中隐藏某些内容 时间:2016-05-30 作者:lee 如果文章的当前作者只有一篇文章,我试图在一个页面中隐藏一个div。关于如何实现这一点,有什么想法吗?<?php hide or don\'t display if current author has only 1 post ?> <div>blah blah blah</div> <?php end ?> 1 个回复 最合适的回答,由SO网友:Milo 整理而成 count_user_posts 将为您提供作者的帖子数量。get_the_author_meta 为您提供用户ID。请注意,这需要在循环中才能获得正确的用户。if( 1 < count_user_posts( get_the_author_meta( \'ID\' ) , \'post\' ) ) { echo \'<div>blah blah blah</div>\'; } 文章导航