Comments_Number()的问题

时间:2015-04-14 作者:Josh

为什么以下代码:

echo \'<ul>\';
while ( $query->have_posts() ) {
    $query->the_post();

    $title = get_the_title();
    echo \'<li>\' . $title . comments_number() . \'</li>\';
}
echo \'</ul>\';
。将注释移到<li> 像这样:

1条评论

你好,世界

1 个回复
SO网友:czerspalace

comments_number() echo是评论的数量get_comments_number() 以字符串形式返回注释数,因此您可能要查找的是get_comments_number 而不是comments_number, 喜欢

echo \'<ul>\';
while ( $query->have_posts() ) {
    $query->the_post();

    $title = get_the_title();
    echo \'<li>\' . $title . get_comments_number() . \'</li>\';
}
echo \'</ul>\';

https://codex.wordpress.org/Template_Tags/get_comments_number

结束

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post