W3cubDocs

/WordPress

WP_Customize_Widgets::get_setting_type( string $setting_id )

Retrieves the widget setting type given a setting ID.

Parameters

$setting_id

(string) (Required) Setting ID.

Return

(string|void) Setting type.

Source

File: wp-includes/class-wp-customize-widgets.php

protected function get_setting_type( $setting_id ) {
		static $cache = array();
		if ( isset( $cache[ $setting_id ] ) ) {
			return $cache[ $setting_id ];
		}
		foreach ( $this->setting_id_patterns as $type => $pattern ) {
			if ( preg_match( $pattern, $setting_id ) ) {
				$cache[ $setting_id ] = $type;
				return $type;
			}
		}
	}

Changelog

Version Description
4.2.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_customize_widgets/get_setting_type