WP_Theme_JSON_Resolver::get_user_global_styles_post_id()public staticWP 5.9.0

Returns the ID of the custom post type that stores user data.

Метод класса: WP_Theme_JSON_Resolver{}

Хуков нет.

Возвращает

Int|null.

Использование

$result = WP_Theme_JSON_Resolver::get_user_global_styles_post_id();

Список изменений

С версии 5.9.0 Введена.

Код WP_Theme_JSON_Resolver::get_user_global_styles_post_id() WP 6.5.2

public static function get_user_global_styles_post_id() {
	if ( null !== static::$user_custom_post_type_id ) {
		return static::$user_custom_post_type_id;
	}

	$user_cpt = static::get_user_data_from_wp_global_styles( wp_get_theme(), true );

	if ( array_key_exists( 'ID', $user_cpt ) ) {
		static::$user_custom_post_type_id = $user_cpt['ID'];
	}

	return static::$user_custom_post_type_id;
}