如何从评论表单中自定义标题?

时间:2020-01-11 作者:Farhan Ali

我想更改注释上的字符串,即:n thinks onpost title is here 我想更改函数中的字符串。请检查屏幕截图enter image description here

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

这取决于主题,但一般来说,评论是由模板生成的:comments.php , 您发现了类似的情况(示例):

<?php 
     $dro_pizza_comment_count = get_comments_number();
    if ( \'1\' === $dro_pizza_comment_count ) {
        printf(
            /* translators: 1: title. */
            esc_html__( \'One thought on &ldquo;%1$s&rdquo;\', \'dro-pizza\' ),\'<span>\' . esc_html( get_the_title() ) . \'</span>\'
            );
        } else {
            printf( // WPCS: XSS OK.
                /* translators: 1: comment count number, 2: title. */
                esc_html( _nx( \'%1$s thoughts on &ldquo;%2$s&rdquo;\', \'%1$s thoughts on &ldquo;%2$s&rdquo;\', $dro_pizza_comment_count, \'comments title\', \'dro-pizza\' ) ),
                number_format_i18n( $dro_pizza_comment_count ),
                \'<span>\' . esc_html( get_the_title() ) . \'</span>\'
            );
        }
?>
所以我们可以更改单词:thought 不管我们想要什么

相关推荐

Comments.php保留评论日期/时间,但删除日期/时间的#超级链接

我在谷歌上搜索了这个问题,似乎找不到解决方案。。。在评论中,我试图从评论日期/时间中删除超链接,当您将鼠标悬停在评论日期上方时,它会将超链接(示例/#comment-210)链接到以下评论。。。我可以在函数中输入什么。php删除链接,我想保留日期/时间文本。。