WP_Customize_Widgets::filter_customize_dynamic_setting_args( false|array $args, string $setting_id ): array|false

In this article

Determines the arguments for a dynamically-created setting.

Parameters

$argsfalse|arrayrequired
The arguments to the WP_Customize_Setting constructor.
$setting_idstringrequired
ID for dynamic setting, usually coming from $_POST['customized'].

Return

array|false Setting arguments, false otherwise.

Source

public function filter_customize_dynamic_setting_args( $args, $setting_id ) {
	if ( $this->get_setting_type( $setting_id ) ) {
		$args = $this->get_setting_args( $setting_id );
	}
	return $args;
}

Changelog

VersionDescription
4.2.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.