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 |
---|---|
3764 | * @return WP_Customize_Setting The instance of the setting that was added. |
3765 | */ |
3766 | public function add_setting( $id, $args = array() ) { |
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; |
Line | Code |
3813 | * For a dynamic setting to be registered, this filter must be employed |
3814 | * to override the default false value with an array of args to pass to |
3815 | * the WP_Customize_Setting constructor. |
3816 | * |
3817 | * @since 4.2.0 |
3818 | * |
3819 | * @param false|array $setting_args The arguments to the WP_Customize_Setting constructor. |
3820 | * @param string $setting_id ID for dynamic setting, usually coming from `$_POST['customized']`. |
3821 | */ |
3822 | $setting_args = apply_filters( 'customize_dynamic_setting_args', $setting_args, $setting_id ); |
3823 | if ( false === $setting_args ) { |
3824 | continue; |
3825 | } |
3826 |
|
3827 | /** |
3828 | * Allow non-statically created settings to be constructed with custom WP_Customize_Setting subclass. |
3829 | * |
3830 | * @since 4.2.0 |
3831 | * |