如果当前作者只有一篇文章,则在单页中隐藏某些内容

时间: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>\';
}

相关推荐

Get_the_Author_meta()和Get_User_meta()有什么不同?

我有个问题:get_the_author_meta() 返回元get_user_meta() 对于相同的元键返回false,我不知道为什么会发生这种情况。关于用户元数据,我应该何时使用其中一种?I tried this:get_the_author_meta(\'afzfp_user_status\', $user->ID); get_user_meta(\'afzfp_user_status\', $user->ID, true); It returns:String \"t