Themes: Change the order of path check in is_block_theme method.
Change check to see if the current theme is a block theme, to check the path `/templates/index.html` first over the deprecated path `/block-templates/index.html`. As this path was deprecated in WP 5.9, it is more likely the block theme would use the current path. This saves a file_exists call which improves performance. Props nihar007, spacedmonkey. Fixes #58520. Built from https://develop.svn.wordpress.org/trunk@55941 git-svn-id: http://core.svn.wordpress.org/trunk@55453 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9d44526db8
commit
48f5508fc9
|
@ -1515,8 +1515,8 @@ final class WP_Theme implements ArrayAccess {
|
|||
}
|
||||
|
||||
$paths_to_index_block_template = array(
|
||||
$this->get_file_path( '/block-templates/index.html' ),
|
||||
$this->get_file_path( '/templates/index.html' ),
|
||||
$this->get_file_path( '/block-templates/index.html' ),
|
||||
);
|
||||
|
||||
$this->block_theme = false;
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.3-alpha-55940';
|
||||
$wp_version = '6.3-alpha-55941';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue