Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: customize_dynamic_setting_class

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

This hook occurs 2 times in this file.

Line Code
3767           if ( $id instanceof WP_Customize_Setting ) {
3768                $setting = $id;
3769           } else {
3770                $class = 'WP_Customize_Setting';
3771
3772                /** This filter is documented in wp-includes/class-wp-customize-manager.php */
3773                $args = apply_filters( 'customize_dynamic_setting_args', $args, $id );
3774
3775                /** This filter is documented in wp-includes/class-wp-customize-manager.php */
3776                $class = apply_filters( 'customize_dynamic_setting_class', $class, $id, $args );
3777
3778                $setting = new $class( $this, $id, $args );
3779           }
3780
3781           $this->settings[ $setting->id ] = $setting;
3782           return $setting;
3783      }
3784
3785      /**
 
Line Code
3827                /**
3828                 * Allow non-statically created settings to be constructed with custom WP_Customize_Setting subclass.
3829                 *
3830                 * @since 4.2.0
3831                 *
3832                 * @param string $setting_class WP_Customize_Setting or a subclass.
3833                 * @param string $setting_id    ID for dynamic setting, usually coming from `$_POST['customized']`.
3834                 * @param array  $setting_args  WP_Customize_Setting or a subclass.
3835                 */
3836                $setting_class = apply_filters( 'customize_dynamic_setting_class', $setting_class, $setting_id, $setting_args );
3837
3838                $setting = new $setting_class( $this, $setting_id, $setting_args );
3839
3840                $this->add_setting( $setting );
3841                $new_settings[] = $setting;
3842           }
3843           return $new_settings;
3844      }
3845