-
Notifications
You must be signed in to change notification settings - Fork 85
Add type field to distinguish block themes from classic themes #477
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
Merged
Conversation
This file contains hidden or 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
Co-authored-by: swissspidy <841956+swissspidy@users.noreply.github.com>
Co-authored-by: swissspidy <841956+swissspidy@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add theme type distinction for wp theme commands
Add type field to distinguish block themes from classic themes
Nov 11, 2025
Codecov Report❌ Patch coverage is
📢 Thoughts on this report? Let us know! |
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: swissspidy <841956+swissspidy@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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.
Adding
typefield to distinguish block themes vs classic themes forwp theme getandwp theme listcommands.Summary
This PR adds a new
typefield that indicates whether a theme is ablockorclassictheme. The implementation usesWP_Theme::is_block_theme()(available since WordPress 5.9) with backward compatibility checks.Changes Made
typefield to$obj_fieldsin Theme_Commandget_all_themes()method to detect and add theme type (block/classic)get()method to includetypein theme variablestypeto$theme_varsarray so it displays by defaulttypefield in theme.featureImplementation Details
$obj_fieldsarray,$theme_varsarray, and updatedget()method to detect theme typeget_all_themes()methodtheme listcommand to include 'type' fieldThe implementation includes proper backward compatibility by checking if the
is_block_theme()method exists before calling it, ensuring it works with older WordPress versions.✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.