customize_dynamic_setting_class
The WordPress Core customize dynamic setting class hook.
Description
Parameters (3)
- 0. $array (callback) =>
array( $this, 'filter_dynamic_setting_class' )
- The array.
- 1. $int (int) =>
10
- The int.
- 2. $int (int) =>
3
- The int.
Usage
- To run the hook, copy the example below.
- $array = apply_filters( 'customize_dynamic_setting_class', $array, $int, $int );
- if ( !empty( $array ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the customize_dynamic_setting_class callback
- function filter_customize_dynamic_setting_class( $array, $int, $int ) {
- // make filter magic happen here...
- return $array;
- };
- // add the filter
- add_filter( 'customize_dynamic_setting_class', 'filter_customize_dynamic_setting_class', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'customize_dynamic_setting_class', 'filter_customize_dynamic_setting_class', 10, 3 );
Defined (1)
The filter is defined in the following location(s).
- /wp-includes/class-wp-customize-nav-menus.php
- add_filter( 'customize_dynamic_setting_class', array( $this, 'filter_dynamic_setting_class' ), 10, 3 );