loop_start
Fires once the loop is started.
Usage
add_action( 'loop_start', 'wp_kama_loop_start_action' );
/**
* Function for `loop_start` action-hook.
*
* @param WP_Query $query The WP_Query instance (passed by reference).
*
* @return void
*/
function wp_kama_loop_start_action( $query ){
// action...
}
- $query(WP_Query)
- The WP_Query instance (passed by reference).
Changelog
| Since 2.0.0 | Introduced. |
Where the hook is called
loop_start
wp-includes/class-wp-query.php 3798
do_action_ref_array( 'loop_start', array( &$this ) );