comment_form_top action-hookWP 3.0.0

Fires at the top of the comment form, inside the form tag.

Usage

add_action( 'comment_form_top', 'wp_kama_comment_form_top_action' );

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

	// action...
}

Changelog

Since 3.0.0 Introduced.

Where the hook is called

comment_form()
comment_form_top
wp-includes/comment-template.php 2712
do_action( 'comment_form_top' );

Where the hook is used in WordPress

Usage not found.