in_widget_form
Fires at the end of the widget control form.
Description
Parameters (3)
- 0. $array (array) =>
array( __CLASS__, 'widget_conditions_admin' )
- The array.
- 1. $int (int) =>
10
- The int.
- 2. $int (int) =>
3
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'in_widget_form', $array, $int, $int );
- The following example is for adding a hook callback.
- // define the in_widget_form callback
- function action_in_widget_form( $array, $int, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'in_widget_form', 'action_in_widget_form', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'in_widget_form', 'action_in_widget_form', 10, 3 );
Defined (1)
The action is defined in the following location(s).
- /modules/widget-visibility/widget-conditions.php
- add_action( 'in_widget_form', array( __CLASS__, 'widget_conditions_admin' ), 10, 3 );