首先,你应该看看creating a child theme. 这样,Wordpress更新不会删除您所做的任何修改。
接下来,编辑wp内容/主题/2017/模板部分/帖子/内容。php并查找以下代码:
if ( is_single() ) {
the_title( \'<h1 class="entry-title">\', \'</h1>\' );
} elseif ( is_front_page() && is_home() ) {
the_title( \'<h3 class="entry-title"><a href="\' . esc_url( get_permalink() ) . \'" rel="bookmark">\', \'</a></h3>\' );
} else {
the_title( \'<h2 class="entry-title"><a href="\' . esc_url( get_permalink() ) . \'" rel="bookmark">\', \'</a></h2>\' );
}
之后,只需添加以下内容:
// Show number of comments
echo \'<div>(\' . comments_number( \'no responses\', \'one response\', \'% responses\' ) . \')</div>\';
这应显示输出
Your Page Title(13个响应)