WP_Theme_JSON_Resolver::get_user_global_styles_post_id() WordPress Method
The WP_Theme_JSON_Resolver::get_user_global_styles_post_id() method is used to get the post ID of the global stylesheet for a user.
WP_Theme_JSON_Resolver::get_user_global_styles_post_id() #
Returns the ID of the custom post type that stores user data.
Return
(integer|null)
Source
File: wp-includes/class-wp-theme-json-resolver.php
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;
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 5.9.0 | Introduced. |