Skip to content

Instantly share code, notes, and snippets.

@developer-anuragsingh
Created August 4, 2017 07:32
Show Gist options
  • Select an option

  • Save developer-anuragsingh/e518dbe3962a21314a34507a0c8a907e to your computer and use it in GitHub Desktop.

Select an option

Save developer-anuragsingh/e518dbe3962a21314a34507a0c8a907e to your computer and use it in GitHub Desktop.
Move comment box in bottom of the form
// Move comment box in bottom of the form
function wpb_move_comment_field_to_bottom( $fields ) {
$comment_field = $fields['comment'];
unset( $fields['comment'] );
$fields['comment'] = $comment_field;
return $fields;
}
add_filter( 'comment_form_fields', 'wpb_move_comment_field_to_bottom' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment