We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Very simple customization of theme features by overriding theme settings.
php hook to override a setting in theme.json. Allowing the ability to create a user interface to modify theme settings.
<?php /** * Custom theme.json injection: Theme Supports: Dropcap * @see WordPress documentation on theme.json overrides (DNE) */ // Add support for Dropcap in TwentyTwenty* add_theme_supports('dropcap', 'twentytwentythree') { return { "typography": { "dropcap": "true" } } }
The text was updated successfully, but these errors were encountered:
Referenced in this Style Engine feature requests / PR: #42493
File commit here - a filter exposing the style engine from the data store and storing it to an array.
Did not pass E2E testing... Just was looking around at some of the style engine info (didn't know that's what it was called 🤩)
Sorry, something went wrong.
No branches or pull requests
What problem does this address?
Very simple customization of theme features by overriding theme settings.
What is your proposed solution?
php hook to override a setting in theme.json. Allowing the ability to create a user interface to modify theme settings.
Example
The text was updated successfully, but these errors were encountered: