Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mlbd/34d81022080b59424c60002451662bf8 to your computer and use it in GitHub Desktop.
Save mlbd/34d81022080b59424c60002451662bf8 to your computer and use it in GitHub Desktop.
/**
* 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