wpseek.com
				A WordPress-centric search engine for devs and theme authors
			post_comments_form_block_form_defaults › WordPress Function
Since6.0.0
Deprecatedn/a
› post_comments_form_block_form_defaults ( $fields )
| Parameters: | 
 | 
| Returns: | 
 | 
| Defined at: | |
| Codex: | 
Use the button block classes for the form-submit button.
Source
function post_comments_form_block_form_defaults( $fields ) {
	if ( wp_is_block_theme() ) {
		$fields['submit_button'] = '<input name="%1$s" type="submit" id="%2$s" class="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;
}