Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Theme JSON: Add a static $blocks_metadata data definition to the Gutenberg instance of WP_Theme_JSON #42776

Merged
merged 1 commit into from
Jul 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion lib/compat/wordpress-6.1/class-wp-theme-json-6-1.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
* @access private
*/
class WP_Theme_JSON_6_1 extends WP_Theme_JSON_6_0 {

/**
* Define which defines which pseudo selectors are enabled for
* which elements.
Expand Down
14 changes: 13 additions & 1 deletion lib/experimental/class-wp-theme-json-gutenberg.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,17 @@
* @access private
*/
class WP_Theme_JSON_Gutenberg extends WP_Theme_JSON_6_1 {

/**
* Holds block metadata extracted from block.json
* to be shared among all instances so we don't
* process it twice.
*
* It is necessary to redefine $blocks_metadata here so that it
* doesn't get inherited from an earlier instantiation of the
* parent class.
*
* @since 5.8.0
* @var array
*/
protected static $blocks_metadata = null;
}