mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 14:20:15 +00:00
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. git-svn-id: https://develop.svn.wordpress.org/trunk@55941 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user