Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: customize_dynamic_setting_args

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

Line Code
1082                 * For a dynamic setting to be registered, this filter must be employed
1083                 * to override the default false value with an array of args to pass to
1084                 * the WP_Customize_Setting constructor.
1085                 *
1086                 * @since 4.2.0
1087                 *
1088                 * @param false|array $setting_args The arguments to the WP_Customize_Setting constructor.
1089                 * @param string      $setting_id   ID for dynamic setting, usually coming from `$_POST['customized']`.
1090                 */
1091                $setting_args = apply_filters( 'customize_dynamic_setting_args', $setting_args, $setting_id );
1092                if ( false === $setting_args ) {
1093                     continue;
1094                }
1095
1096                /**
1097                 * Allow non-statically created settings to be constructed with custom WP_Customize_Setting subclass.
1098                 *
1099                 * @since 4.2.0
1100                 *