Created
January 31, 2016 14:43
-
-
Save TanvirAmi/c890d7080f1d335ec387 to your computer and use it in GitHub Desktop.
Move up the filed above comment section in wordpress 4.4
This file contains 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
<?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