wpseek.com
A WordPress-centric search engine for devs and theme authors



comments_block_form_defaults › WordPress Function

Sincen/a
Deprecatedn/a
comments_block_form_defaults ( $fields )
Parameters:
  • (array) $fields The default comment form arguments.
    Required: Yes
Returns:
  • (array) Returns the modified fields.
Defined at:
Codex:

Use the button block classes for the form-submit button.



Source

function comments_block_form_defaults( $fields ) {
	if ( wp_is_block_theme() ) {
		$fields['submit_button'] = '<input name="%1$s" type="submit" id="%2$s" class="%3$s wp-block-button__link ' . wp_theme_get_element_class_name( 'button' ) . '" value="%4$s" />';
		$fields['submit_field']  = '<p class="form-submit wp-block-button">%1$s %2$s</p>';
	}

	return $fields;
}