WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 2 times in this file.
Line | Code |
---|---|
3749 | if ( $id instanceof WP_Customize_Setting ) { |
3750 | $setting = $id; |
3751 | } else { |
3752 | $class = 'WP_Customize_Setting'; |
3753 |
|
3754 | /** This filter is documented in wp-includes/class-wp-customize-manager.php */ |
3755 | $args = apply_filters( 'customize_dynamic_setting_args', $args, $id ); |
3756 |
|
3757 | /** This filter is documented in wp-includes/class-wp-customize-manager.php */ |
3758 | $class = apply_filters( 'customize_dynamic_setting_class', $class, $id, $args ); |
3759 |
|
3760 | $setting = new $class( $this, $id, $args ); |
3761 | } |
3762 |
|
3763 | $this->settings[ $setting->id ] = $setting; |
3764 | return $setting; |
3765 | } |
3766 |
|
3767 | /** |
Line | Code |
3809 | /** |
3810 | * Allow non-statically created settings to be constructed with custom WP_Customize_Setting subclass. |
3811 | * |
3812 | * @since 4.2.0 |
3813 | * |
3814 | * @param string $setting_class WP_Customize_Setting or a subclass. |
3815 | * @param string $setting_id ID for dynamic setting, usually coming from `$_POST['customized']`. |
3816 | * @param array $setting_args WP_Customize_Setting or a subclass. |
3817 | */ |
3818 | $setting_class = apply_filters( 'customize_dynamic_setting_class', $setting_class, $setting_id, $setting_args ); |
3819 |
|
3820 | $setting = new $setting_class( $this, $setting_id, $setting_args ); |
3821 |
|
3822 | $this->add_setting( $setting ); |
3823 | $new_settings[] = $setting; |
3824 | } |
3825 | return $new_settings; |
3826 | } |
3827 |
|