Created
February 8, 2018 07:37
-
-
Save mlbd/34d81022080b59424c60002451662bf8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Move Comment field to bottom | |
*/ | |
if ( !function_exists( 'prefix_move_comment_field_to_bottom' ) ) : | |
function neer_move_comment_field_to_bottom( $fields ) { | |
$comment_field = $fields['comment']; | |
unset( $fields['comment'] ); | |
$fields['comment'] = $comment_field; | |
return $fields; | |
} | |
endif; | |
add_filter( 'comment_form_fields', 'prefix_move_comment_field_to_bottom' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment