如何编辑默认的评论标题?

时间:2020-12-16 作者:joseph

我想要一个代码,这样当帖子上有(或有)两条评论时,它会自动将标题改为“我想写的是”或“我想写的是”这样的代码;为主题添加您的声音"E;。

这个的代码是什么?

1 个回复
SO网友:Q Studio

你可能可以尝试这样的事情-未经测试。。。

add_filter(\'comment_form_defaults\', \'wpse379939_comment_form_modification\');
function wpse379939_comment_form_modification($defaults){

    // check if we have 2 or more comments..
    if ( get_comments_number() >= 2) {

        $defaults[\'title_reply\'] = __(\'Add Your Voice To The Topic!\');   

    }

    return $defaults;

}