loop_end
Fires once the loop has ended.
Description
Parameters (1)
- 0. $array (callback) =>
array( $this, 'stop_menu_item_loop' )
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'loop_end', $array );
- The following example is for adding a hook callback.
- // define the loop_end callback
- function action_loop_end( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'loop_end', 'action_loop_end', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'loop_end', 'action_loop_end', 10, 1 );
Defined (2)
The action is defined in the following location(s).
- /modules/custom-post-types/nova.php
- add_action( 'loop_end', array( $this, 'stop_menu_item_loop' ) );
- remove_action( 'loop_end', array( $this, 'stop_menu_item_loop' ) );