我正在使用这个 PHP 在我的主页上显示评论:
函数.php
function tootsweet_article_total_comments() {
return Comment::where('post', '=', article_id())
->where('status', '=', 'approved')
->count();
}
帖子.php
<?php if (tootsweet_article_total_comments() > 0)
{
echo '<a href="'.article_url().'#comments">';
if (tootsweet_article_total_comments() == 1)
echo ' comment';
else
echo tootsweet_article_total_comments().' comments';
echo '</a>';
}
?>
一切正常,但是当帖子有 0 条评论时,根本不会显示任何文字,而我希望它说“0 条评论”。我对PHP有点业余,所以我需要在这里修改什么吗?