试试这个。您可以在子主题函数中添加此代码段。php文件。
替换(&Q);您的无注释字符串“;你想要什么就用什么。
/*
* @param string $output A translatable string formatted based on whether the count
* is equal to 0, 1, or 1+.
* @param int $number The number of post comments.
* @return string $output
*/
function richards_no_comment_string( $output, $number ){
if( $number === 0 ){
$output = __( \'Your No Comments String\' );
}
return $output;
}
add_filter(\'comments_number\', \'richards_no_comment_string\', 20, 2);
对于免费的Sinatra主题,它使用特定于主题的功能来输出该文本,自定义将向子主题添加此功能:
function sinatra_entry_meta_comments() {
$icon = sinatra()->icons->get_meta_icon( \'comments\', sinatra()->icons->get_svg( \'message-square\', array( \'aria-hidden\' => \'true\' ) ) );
if ( ! post_password_required() && ( comments_open() || get_comments_number() ) ) {
echo \'<span class="comments-link">\';
comments_popup_link( wp_kses_post( $icon ) . esc_html__( \'Leave a Comment\', \'sinatra\' ), wp_kses( $icon, sinatra_get_allowed_html_tags( \'post\' ) ) . esc_html__( \'1 Comment\', \'sinatra\' ), wp_kses( $icon, sinatra_get_allowed_html_tags( \'post\' ) ) . esc_html__( \'% Comments\', \'sinatra\' ), \'comments-link\' );
echo \'</span>\';
}
}
测试并确认工作正常。