From 8be422f293cedabb8f558d743cf1fb60d7aabafe Mon Sep 17 00:00:00 2001 From: Daniel Bachhuber Date: Mon, 2 Oct 2023 22:54:29 +0000 Subject: [PATCH] Editor: Prevent possibility of a fatal error when previewing block themes. Ensures that preview callbacks attached to the `stylesheet` and `template` filters do not run before `pluggable.php` has been included. These callbacks need functionality from `pluggable.php`. Props scruffian, johnbillion, SergeyBiryukov, okat, azaozz. Merges [56529] and [56757] to the 6.3 branch. Fixes #59000. git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56758 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/default-filters.php | 3 +++ src/wp-includes/theme-previews.php | 21 ++++++++++++++------ tests/phpunit/tests/theme-previews.php | 27 ++++++++++++++++++++++++++ 3 files changed, 45 insertions(+), 6 deletions(-) create mode 100644 tests/phpunit/tests/theme-previews.php diff --git a/src/wp-includes/default-filters.php b/src/wp-includes/default-filters.php index bf39f29b4d..1011d345eb 100644 --- a/src/wp-includes/default-filters.php +++ b/src/wp-includes/default-filters.php @@ -533,6 +533,9 @@ add_action( 'admin_enqueue_scripts', '_wp_customize_loader_settings' ); add_action( 'delete_attachment', '_delete_attachment_theme_mod' ); add_action( 'transition_post_status', '_wp_keep_alive_customize_changeset_dependent_auto_drafts', 20, 3 ); +// Block Theme Previews. +add_action( 'plugins_loaded', 'wp_initialize_theme_preview_hooks', 1 ); + // Calendar widget cache. add_action( 'save_post', 'delete_get_calendar_cache' ); add_action( 'delete_post', 'delete_get_calendar_cache' ); diff --git a/src/wp-includes/theme-previews.php b/src/wp-includes/theme-previews.php index e8e4a6a8c8..882f3e0c0f 100644 --- a/src/wp-includes/theme-previews.php +++ b/src/wp-includes/theme-previews.php @@ -75,10 +75,19 @@ function wp_block_theme_activate_nonce() { assertEquals( has_filter( 'stylesheet', 'wp_get_theme_preview_path' ), 10 ); + $this->assertEquals( has_filter( 'template', 'wp_get_theme_preview_path' ), 10 ); + $this->assertEquals( has_action( 'init', 'wp_attach_theme_preview_middleware' ), 10 ); + $this->assertEquals( has_action( 'admin_head', 'wp_block_theme_activate_nonce' ), 10 ); + } +}