仅将注释弹出链接显示为文本

时间:2014-09-14 作者:Dragut

我想展示一下comments_popup_links() 仅用作文本,不用作链接。是否有可能阻止它成为链接。

下面的代码段创建了指向该评论的链接,但我不希望它是链接。

<?php
  comments_popup_link( \'No comments\', \'1 comment\', \'% comments\');
?>

1 个回复
最合适的回答,由SO网友:Bernie 整理而成

因此,不要使用comments\\u popup\\u link()。使用comments_number() 相反这具有相同的功能,但没有链接。

<?php comments_number( \'no responses\', \'one response\', \'% responses\' ); ?>

结束

相关推荐

如何在页面/?Comments_Popup=删除(或meta noindex)

我注意到我的网站有很多这样的页面:http://example.com/?comments_popup=837 http://example.com/?comments_popup={id of the page/post} 它们导致了许多重复/精简的内容页。我想删除,或者至少将meta-noindex放在这里。要编辑的文件是哪个?我想这是wordpress的核心。