我目前的代码是:
<h2 id="comment_title">vistor comments</h2>
<div class="count">
<?php
$count = comment_num($nid);
if($count>0){
echo $count'comments';
} else {
echo '';
}
?>
</div>
现在,我想知道如何更改上面的代码以获得此效果:
当$count > 0
时,它应该输出html标签,并且可以使用一些css样式。
<h2 id="comment_title">vistor comments</h2>and $count'comments';
$count <= 0
时,请勿输出html标签。并且不要使用任何CSS样式。
<h2 id="comment_title">vistor comments</h2> ;
答案 0 :(得分:0)
<h2 id="comment_title"><?php echo $count?> visitor comments</h2></div>