loop_end action-hook . WP 2.0.0
Fires once the loop has ended.
Usage
add_action( 'loop_end', 'action_function_name_9941' ); function action_function_name_9941( $this ){ // action... }
- $this(WP_Query)
- The WP_Query instance (passed by reference).
Changelog
Since 2.0.0 | Introduced. |
Where the hook is called
loop_end
wp-includes/class-wp-query.php 3337
do_action_ref_array( 'loop_end', array( &$this ) );