我正在自定义具有以下代码的主题以显示注释:
if ( have_comments() ) : ?>
<h2 class="comments-title">
<?php
printf( // WPCS: XSS OK.
esc_html( _nx( \'One thought on “%2$s”\', \'%1$s thoughts on “%2$s”\', get_comments_number(), \'comments title\', \'kadabra\' ) ),
number_format_i18n( get_comments_number() ),
\'<span>\' . get_the_title() . \'</span>\'
);
?>
</h2>
但是,它始终显示以下内容:
0 thoughts on “Post title”
尽管我有几点意见
if ( have_comments() ) :
零件通过。有什么想法吗?
PS:wp\\U调试已启用,并且未显示任何错误。