签出do\\u shortcode():http://codex.wordpress.org/Function_Reference/do_shortcode
do_shortcode(\'[shortcode option1="value1" option2="value2"]\');
因此,您的示例是:
do_shortcode(\'[post_comments]\');
更容易的方法是利用底层的注释功能:
http://codex.wordpress.org/Function_Reference/comments_number
<p>
This post currently has
<?php comments_number( \'no responses\', \'one response\', \'% responses\' ); ?>.
</p>
您还可以使用
get_comments_number
返回值,而不是将其打印到屏幕上。
然而,这个函数需要在循环中才能工作,然而我有一种感觉。