Guest User

Untitled

a guest
Feb 20th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. /**
  2. * Move Comment field to bottom
  3. */
  4. if ( !function_exists( 'appmax_move_comment_field_to_bottom' ) ) :
  5. function appmax_move_comment_field_to_bottom( $fields ) {
  6. $comment_field = $fields['comment'];
  7. unset( $fields['comment'] );
  8. $fields['comment'] = $comment_field;
  9. return $fields;
  10. }
  11. endif;
  12. add_filter( 'comment_form_fields', 'appmax_move_comment_field_to_bottom' );
Add Comment
Please, Sign In to add comment