WP_Theme_JSON_Resolver::get_user_global_styles_post_id(): integer|null

In this article

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

Return

integer|null

Source

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;
}

Changelog

VersionDescription
5.9.0Introduced.

User Contributed Notes

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