'; $form['fields']['email'] = '

'; $form['fields']['url'] = '

'; $form['comment_field'] = '

'; $form['comment_notes_before'] = ''; $form['label_submit'] = $cosmoswp_comment_button_text; $form['title_reply'] = '' . $cosmoswp_comment_title . ''; return $form; } add_filter('comment_form_defaults', 'cosmoswp_alter_comment_form'); endif; if (!function_exists('cosmoswp_move_comment_field_to_bottom')) { /* * * re-order comment form e.g move comment to bottom * @since CosmosWP 1.0.0 * @param array $fields */ function cosmoswp_move_comment_field_to_bottom($fields) { $comment_field = $fields['comment']; unset($fields['comment']); $fields['comment'] = $comment_field; return $fields; } add_filter('comment_form_fields', 'cosmoswp_move_comment_field_to_bottom'); }