comment_form_before action-hookWP 3.0.0

Fires before the comment form.

Usage

add_action( 'comment_form_before', 'wp_kama_comment_form_before_action' );

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

	// action...
}

Changelog

Since 3.0.0 Introduced.

Where the hook is called

comment_form()
comment_form_before
wp-includes/comment-template.php 2669
do_action( 'comment_form_before' );

Where the hook is used in WordPress

Usage not found.