comment_form_after_fields action-hookWP 3.0.0

Fires after the comment fields in the comment form, excluding the textarea.

Usage

add_action( 'comment_form_after_fields', 'wp_kama_comment_form_after_fields_action' );

/**
 * Function for `comment_form_after_fields` action-hook.
 * 
 * @return void
 */
function wp_kama_comment_form_after_fields_action(){

	// action...
}

Changelog

Since 3.0.0 Introduced.

Where the hook is called

comment_form()
comment_form_after_fields
wp-includes/comment-template.php 2819
do_action( 'comment_form_after_fields' );

Where the hook is used in WordPress

Usage not found.