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.

Method of the class: WP_Theme_JSON_Resolver{}

No Hooks.

Return

Int|null.

Usage

$result = WP_Theme_JSON_Resolver::get_user_global_styles_post_id();

Changelog

Since 5.9.0 Introduced.

WP_Theme_JSON_Resolver::get_user_global_styles_post_id() code 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;
}