php 更改注释表单字段的顺序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 更改注释表单字段的顺序相关的知识,希望对你有一定的参考价值。

// let's change the order the comment fields display
function move_comment_field( $fields ) {
    $comment_field = $fields['comment'];
    unset( $fields['comment'] );
    $fields['comment'] = $comment_field;
    return $fields;
}

add_filter( 'comment_form_fields', 'move_comment_field' );

以上是关于php 更改注释表单字段的顺序的主要内容,如果未能解决你的问题,请参考以下文章