JustinCann
7/7/2016 - 9:43 AM

Wordpress - Move Comment Field to Bottom of comment form

Wordpress - Move Comment Field to Bottom of comment form

	
	function move_comment_field_to_bottom($fields)
	{
	    $comment_field = $fields['comment'];
			
	    unset($fields['comment']);

	    $fields['comment'] = $comment_field;

	    return $fields;
	}

	add_filter('comment_form_fields', 'move_comment_field_to_bottom');