bcn_before_fill
The Breadcrumb NavXT bcn before fill hook.
Description
Parameters (1)
- 0. $instance (unknown)
- The instance.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bcn_before_fill', $instance );
- The following example is for adding a hook callback.
- // define the bcn_before_fill callback
- function action_bcn_before_fill( $instance ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bcn_before_fill', 'action_bcn_before_fill', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bcn_before_fill', 'action_bcn_before_fill', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /class.bcn_breadcrumb_trail.php
- do_action('bcn_before_fill', $this);