mirrored from git://develop.git.wordpress.org/
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Feature: Block-based template parts for Classic themes #3234
Closed
Mamaduka
wants to merge
4
commits into
WordPress:trunk
from
Mamaduka:backport/site-editor-template-parts-mode
Closed
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
0200cfd
Feature: Block-based template parts for Classic themes
Mamaduka b4de22f
Update unit tests
Mamaduka ecd664a
fix prevent unwanted access of site-editor.php
fabiankaegy 040c485
Merge pull request #48 from fabiankaegy/backport/site-editor-template…
Mamaduka File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
); | ||
} | ||
|
||
if ( ! wp_is_block_theme() ) { | ||
if ( ! ( current_theme_supports( 'block-template-parts' ) || wp_is_block_theme() ) ) { | ||
wp_die( __( 'The theme you are currently using is not compatible with Full Site Editing.' ) ); | ||
} | ||
|
||
|
@@ -64,14 +64,24 @@ static function( $classes ) { | |
|
||
$block_editor_context = new WP_Block_Editor_Context( array( 'name' => 'core/edit-site' ) ); | ||
$custom_settings = array( | ||
'siteUrl' => site_url(), | ||
'postsPerPage' => get_option( 'posts_per_page' ), | ||
'styles' => get_block_editor_theme_styles(), | ||
'defaultTemplateTypes' => $indexed_template_types, | ||
'defaultTemplatePartAreas' => get_allowed_block_template_part_areas(), | ||
'__unstableHomeTemplate' => $home_template, | ||
'siteUrl' => site_url(), | ||
'postsPerPage' => get_option( 'posts_per_page' ), | ||
'styles' => get_block_editor_theme_styles(), | ||
'defaultTemplateTypes' => $indexed_template_types, | ||
'defaultTemplatePartAreas' => get_allowed_block_template_part_areas(), | ||
'supportsLayout' => WP_Theme_JSON_Resolver::theme_has_support(), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Before, the Site Editor always assumed layout support. |
||
'supportsTemplatePartsMode' => ! wp_is_block_theme() && current_theme_supports( 'block-template-parts' ), | ||
'__unstableHomeTemplate' => $home_template, | ||
); | ||
|
||
/** | ||
* We don't need home template resolution when block template parts are supported. | ||
* Set the value to true to satisfy the editor initialization guard clause. | ||
*/ | ||
if ( $custom_settings['supportsTemplatePartsMode'] ) { | ||
$custom_settings['__unstableHomeTemplate'] = true; | ||
} | ||
|
||
// Add additional back-compat patterns registered by `current_screen` et al. | ||
$custom_settings['__experimentalAdditionalBlockPatterns'] = WP_Block_Patterns_Registry::get_instance()->get_all_registered( true ); | ||
$custom_settings['__experimentalAdditionalBlockPatternCategories'] = WP_Block_Pattern_Categories_Registry::get_instance()->get_all_registered( true ); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5261,7 +5261,7 @@ function wp_widgets_add_menu() { | |
} | ||
|
||
$menu_name = __( 'Widgets' ); | ||
if ( wp_is_block_theme() ) { | ||
if ( wp_is_block_theme() || current_theme_supports( 'block-template-parts' ) ) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We need this to avoid conflicts between the |
||
$submenu['themes.php'][] = array( $menu_name, 'edit_theme_options', 'widgets.php' ); | ||
} else { | ||
$submenu['themes.php'][7] = array( $menu_name, 'edit_theme_options', 'widgets.php' ); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@hellofromtonya I belive something like this would solve the case you uncovered in your testing here: #3234 (comment)
As far as I'm aware that was not a known issue and no patch for it had been created.
@Mamaduka asked me to keep an eye on this PR since he is out traveling. I will create a PR on the Gutenberg Repo to fix the issue there aswell.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually in looking at the code in Gutenberg it was handled as a completely separate admin page. So this issue only exists in this PR and only needs to get fixed here. No backport to Gutenberg is needed.
https://github.com/WordPress/gutenberg/blob/d19258cb5b85cea52e85a3e86c9550dd48d44fca/lib/compat/wordpress-6.1/template-parts-screen.php#L5
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In order to make it easier to test, I have also created a separate PR against @Mamaduka's branch which applies the same fix as the one I have shown in the suggestion above: Mamaduka#48
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, that does resolve it. Well done @fabiankaegy - thank you!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!