我想使用模板标记显示帖子上的评论数
<?php comments_number( $zero, $one, $more ); ?>
但是,由于某些原因,此标记不起任何作用,也不会打印到页面上。你可以看看我在
http://blog.diginomics.com/bitcoins-innate-regulation/以下是3个模板标记的完整代码片段:author、category和comment:
<div class="post-info">
<a href="<?php echo get_author_posts_url( get_the_author_meta( \'ID\' ) ); ?>" class="post-item">
<i class="fa fa-user"></i>
<?php the_author(); ?>
</a>
<a href="<?php get_category_link( $category_id ); ?>" class="post-item">
<i class="fa fa-tags"></i>
<?php the_category( \'•\' ); ?>
</a>
<a href="<?php comments_link(); ?>" class="post-item">
<i class="fa fa-comments"></i>
<?php comments_number( $zero, $one, $more ); ?>
</a>
</div>
为什么评论编号没有显示出来,作为一个附带问题,为什么类别被分为两个部分,而没有按其应有的风格进行设计?