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
Copy changes for theme export back to core #2534
Closed
Closed
Changes from 21 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
bff007b
Copy changes for theme export back to core
scruffian efc71c4
Add since to the patterns function
scruffian 890af0e
add unit test
scruffian 7fda13e
Add tests for theme json
scruffian 70df60d
Add changes to the resolver too
scruffian fabe054
remove gutenberg namespacing
scruffian 8858303
add a missing .0
scruffian 6765324
fix tabs
scruffian 664b8a2
fix indenting
scruffian 0dfc4eb
update unit test
scruffian 4a3421f
update the tests for the theme export
scruffian 701dac3
fix linter
scruffian 648bd90
update test
scruffian 800e223
add deprecated notice to should_override_preset
scruffian aba26af
Add docs from patch file
scruffian 2868c57
Update src/wp-includes/class-wp-theme-json.php
scruffian e26561e
Update src/wp-includes/class-wp-theme-json.php
scruffian 94cd72c
Add more source control systems to the excluded array
scruffian 7fcb6de
Merge branch 'update/theme-export-for-6.0' of github.com:scruffian/wo…
scruffian 9722e91
align descriptions
scruffian ca12de4
increase the line length in the docblock
scruffian 15526a2
specify the function to use instead of should_override_preset
scruffian 2529def
rename param and use wp_parse_args
scruffian 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
Oops, something went wrong.
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.
We don't typically follow this pattern in Core. Traditionally this would be an empty array and use
wp_parse_args
to set defaults.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.
Done in 2529def