WordPress:Template Tags/comments number

来自站长百科
跳转至: 导航、​ 搜索

描述[ ]

显示评论的总数,文章的Trackbacks, 和Pingbacks。必须在The Loop内部使用这个标签。

用法[ ]

%%% <?php comments_number('zero', 'one', 'more'); ?> %%%

例子[ ]

对于评论数目,文本的回应[ ]

根据评论的数目,显示文本:评论数目为零- 没有回应; 评论数目为一 - 一个回应;多于一个评论(总共42个评论)显示42 个回应

<p>This post currently has 
<?php comments_number('no responses','one response','% responses'); ?>.</p> 

参数[ ]

zero
(string)没有评论时候,显示的文本。默认'没有评论'
one
(string) 有一个评论时候,显示的文本。默认'1 个评论'
more
(string) 不止一个评论时候,显示的文本。% 被评论数目代替,因此,当有五个评论的时候,'% so far' 显示为 "5 so far" 。默认 '% 评论'

相关的[ ]

comments_number, comments_link, comments_rss_link, comments_popup_script, comments_popup_link, comment_ID, comment_author, comment_author_IP, comment_author_email, comment_author_url, comment_author_email_link, comment_author_url_link, comment_author_link, comment_type, comment_text, comment_excerpt, comment_date, comment_time, comments_rss_link, comment_author_rss, comment_text_rss, comment_link_rss, permalink_comments_rss

模板:PHP 函数 标签 页底文字