我有一些数据只有在帖子有一条或多条评论时才会显示。当有0条评论时,我想不显示任何内容。
逻辑是:
如果评论计数> 0 {做这个} 别的{}
如果有人可以帮我解决这类问题的PHP代码段,我们将不胜感激。
答案 0 :(得分:0)
$nr_comments = get_comments_number( $post_id );
if($nr_comments > 0){
//we have comments and do this
}
else{
//we don't have any comments yet and do something else
}
注意:此标记必须位于The Loop中。
由于这是循环中的,因此您不需要$post_id
。