dynamic_sidebar
The WordPress Core dynamic sidebar hook.
Description
Parameters (1)
- 0. $array (callback) =>
array( $this, 'track_current_widget' )
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'dynamic_sidebar', $array );
- The following example is for adding a hook callback.
- // define the dynamic_sidebar callback
- function action_dynamic_sidebar( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'dynamic_sidebar', 'action_dynamic_sidebar', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'dynamic_sidebar', 'action_dynamic_sidebar', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /modules/contact-form/grunion-contact-form.php
- add_action( 'dynamic_sidebar', array( $this, 'track_current_widget' ) );