comment_loop_start action-hookWP 2.2.0

Fires once the comment loop is started.

Usage

add_action( 'comment_loop_start', 'wp_kama_comment_loop_start_action' );

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

	// action...
}

Changelog

Since 2.2.0 Introduced.

Where the hook is called

WP_Query::the_comment()
comment_loop_start
wp-includes/class-wp-query.php 3775
do_action( 'comment_loop_start' );

Where the hook is used in WordPress

Usage not found.