Skip to content

Instantly share code, notes, and snippets.

@TanvirAmi
Created January 31, 2016 14:43
Show Gist options
  • Save TanvirAmi/c890d7080f1d335ec387 to your computer and use it in GitHub Desktop.
Save TanvirAmi/c890d7080f1d335ec387 to your computer and use it in GitHub Desktop.
Move up the filed above comment section in wordpress 4.4
<?php
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' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment