post_comments_form_block_form_defaults

The timeline below displays how wordpress function post_comments_form_block_form_defaults has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 6.1

/**
 * Use the button block classes for the form-submit button.
 *
 * @param array $fields The default comment form arguments.
 *
 * @return array Returns the modified fields.
 */
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;
}