comment_loop_start
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
comment_loop_start
wp-includes/class-wp-query.php 3909
do_action( 'comment_loop_start' );