Note that we are having a summer break for the bi- weekly Theme Review meeting.
Next review meeting is on July 7 17:00 UTC.
Twice monthly at Tuesday @ 17:00 UTC Second Tuesday in the month is open floor and the fourth Tuesday is with a fixed agenda.
BlockBlockBlock is the abstract term used to describe units of markup that, composed together, form the content or layout of a webpage using the WordPress editor. The idea combines concepts of what in the past may have achieved with shortcodes, custom HTML, and embed discovery into a single consistent API and user experience. Based Themes meeting twice monthly at Wednesday @ 16:00 UTC
Triage Meeting twice monthly at Wednesday @ 18:00 UTC
Hi everyone! Here’s the seventh weekly roundup of theme-related discussions, fixes, and developments in GutenbergGutenbergThe Gutenberg project is the new Editor Interface for WordPress. The editor improves the process and experience of creating new content, making writing rich content much simpler. It uses ‘blocks’ to add richness rather than shortcodes, custom HTML etc. https://wordpress.org/gutenberg/.
Since conversations are ongoing, some of the issues & PRs mentioned were also present in previous weeks. We’ve tried to put brand new ones at the top of each of the bulleted lists.
Please weigh in on the tickets below — your voice and feedback are welcome!
In progress / Discussions:
General
Hexadecimal colors in gradient presets break the blockBlockBlock is the abstract term used to describe units of markup that, composed together, form the content or layout of a webpage using the WordPress editor. The idea combines concepts of what in the past may have achieved with shortcodes, custom HTML, and embed discovery into a single consistent API and user experience. preview. 23361
Discussion around adding font unit options to the font size selector. 23323
Button Block: Lighten the DOM in the editor. 23222
Limit display of block patterns if their included blocks are not available. 23275
PR to adjust max-width setting for reusable blocks. 22632
PR for adding color controls to the list block. 21387
PR to change CSSCSSCSS is an acronym for cascading style sheets. This is what controls the design or look and feel of a site. specificity of default font-size rules. 22671
Fixes for the issue where custom theme colors don’t work in the editor after Gutenberg 7.9.1. 22356
Add a way to filterFilterFilters are one of the two types of Hooks https://codex.wordpress.org/Plugin_API/Hooks. They provide a way for functions to modify data of other functions. They are the counterpart to Actions. Unlike Actions, filters are meant to work in an isolated manner, and should never have side effects such as affecting global variables and output. CSS classes for blocks using PHPPHPPHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML. http://php.net/manual/en/intro-whatis.php.23223
Block-based Themes
Consider renaming experimental-theme.json documentation to “Global Styles” 23307
Discussing the use of conditional logic in experimental-theme.json22324
Issue where HTMLHTMLHTML is an acronym for Hyper Text Markup Language. It is a markup language that is used in the development of web pages and websites. file updates are not being reflected in the full site editor. 23106
Tracking issue for Template Tags in Full Site Editing 22724
A set of blocks are available with the Gutenberg pluginPluginA plugin is a piece of software containing a group of functions that can be added to a WordPress website. They can extend functionality or add new features to your WordPress websites. WordPress plugins are written in the PHP programming language and integrate seamlessly with WordPress. These can be free in the WordPress.org Plugin Directory https://wordpress.org/plugins/ or can be cost-based plugin from a third-party to enable building templates in FSE.
HTML and CSS not present/inconsistent for FSE Blocks 22759
Tracking and consolidating style attributes for blocks. 22700
Navigation
This board tracks Navigation Screen and Navigation Block issues that are important for the WordPress 5.5 releaseReleaseA release is the distribution of the final version of an application. A software release may be either public or private and generally constitutes the initial or new generation of a new or upgraded application. A release is preceded by the distribution of alpha and then beta versions of the software.. Project Overview
Merged:
General
Allow block attributes to be modified while multiple blocks are selected. 22470
This post summarizes the latest bi-weekly BlockBlockBlock is the abstract term used to describe units of markup that, composed together, form the content or layout of a webpage using the WordPress editor. The idea combines concepts of what in the past may have achieved with shortcodes, custom HTML, and embed discovery into a single consistent API and user experience.-based Themes meeting (agenda, slack transcript). This meeting was held in the #themereviewSlackSlackSlack is a Collaborative Group Chat Platform https://slack.com/. The WordPress community has its own Slack Channel at https://make.wordpress.org/chat/. channel on Wednesday, June 17, 2020, 12:00 PM EDT and was moderated by @jffng.
GutenbergGutenbergThe Gutenberg project is the new Editor Interface for WordPress. The editor improves the process and experience of creating new content, making writing rich content much simpler. It uses ‘blocks’ to add richness rather than shortcodes, custom HTML etc. https://wordpress.org/gutenberg/ Update
Cover Blocks experimental padding control. To enable this, themes need to declare add_theme_support( 'experimental-custom-spacing' ) to see the new controls. Documentation is forthcoming for the Theme Developer Handbook.
Control link color in the paragraph, heading, group, columns, and media & text blocks. This can potentially override a theme’s hover state, so theme developers may need to find a workaround. This enhancement sets the stage for theme.jsonJSONJSON, or JavaScript Object Notation, is a minimal, readable format for structuring data. It is used primarily to transmit data between a server and web application, as an alternative to XML. to eventually handle link styles. Themes can opt-in by declaring add_theme_support( 'experimental-link-color' ) and get the following additional controls:
Also merged in 8.3 a FSE bug fix solving an issue that occurred when the theme supplied an index.html but no front-page.html, causing the site editor to appear blank. It also creates an index.html so that if the theme has no fallback template.
@aristath’s related utility code in the Theme Experiments repo helps with the opposite side of this problem — installing an experimental FSE theme that doesn’t have Gutenberg installed.
In progress theme-based Gutenberg PRs and Issues
On the global styles / theme.json front, there is an issue that asks if theme presets be expanded to line-height, padding, and margin. Subsequent PRs trying out implementing presets for line-height and padding include PR 23177 and PR 23176. There is discussion around whether these presets should be added via add_theme_support (as they were for link color) or if working via theme.json is all that is needed.
This led to a discussion of the proposed hierarchy/relationship between theme.json and add_theme_support. @richtabor foresees theme.json being the owner of the vast majority of these sorts of design defaults, with add_theme_support as the “in-between” for now, or the logic-based overrides of theme.json. @kjellr, @poena, @aristath disagreed saying experimental-themes.json provided more flexibility for a clean start in FSE so long as it supports the logic provided currently by add_theme_support. An issue is now open in GitHubGitHubGitHub is a website that offers online implementation of git repositories that can can easily be shared, copied and modified by other developers. Public repositories are free to host, private repositories require a paid subscription. GitHub introduced the concept of the ‘pull request’ where code changes done in branches by contributors can be reviewed and discussed before being merged be the repository owner. https://github.com/ for wider discussion.
Open Floor
@prtksxna asked if themes should register block styles for full-site blocks like site-title or post-title. @acosmin pointed out theme authors can register any block styles but can’t register blocks in themes at the present time.
Hi everyone! Here’s the sixth weekly roundup of theme-related discussions, fixes, and developments in GutenbergGutenbergThe Gutenberg project is the new Editor Interface for WordPress. The editor improves the process and experience of creating new content, making writing rich content much simpler. It uses ‘blocks’ to add richness rather than shortcodes, custom HTML etc. https://wordpress.org/gutenberg/.
Since conversations are ongoing, some of the issues & PRs mentioned were also present in previous weeks. We’ve tried to put brand new ones at the top of each of the bulleted lists.
Please weigh in on the tickets below — your voice and feedback are welcome!
In progress / Discussions:
General
Button BlockBlockBlock is the abstract term used to describe units of markup that, composed together, form the content or layout of a webpage using the WordPress editor. The idea combines concepts of what in the past may have achieved with shortcodes, custom HTML, and embed discovery into a single consistent API and user experience.: Legacy buttons don’t appear center-aligned by default 23291
Button Block: Lighten the DOM in the editor. 23222
Limit display of block patterns if their included blocks are not available. 23275
PR to adjust max-width setting for reusable blocks. 22632
PR for adding color controls to the list block. 21387
PR to change CSSCSSCSS is an acronym for cascading style sheets. This is what controls the design or look and feel of a site. specificity of default font-size rules. 22671
Fixes for the issue where custom theme colors don’t work in the editor after Gutenberg 7.9.1. 22356
An attempt to remove some of the extra canvas padding in the editor (almost ready to merge). 22213
Block-based Themes
Potential issue where HTMLHTMLHTML is an acronym for Hyper Text Markup Language. It is a markup language that is used in the development of web pages and websites. file updates are not updating in the full site editor.
Tracking issue for Template Tags in Full Site Editing 22724
Syncing theme templates to the block editor in all contexts: 22469
Figuring out a way to handle inline dynamic content in theme templates. 21932
FSE Blocks
A set of blocks are available with the Gutenberg pluginPluginA plugin is a piece of software containing a group of functions that can be added to a WordPress website. They can extend functionality or add new features to your WordPress websites. WordPress plugins are written in the PHP programming language and integrate seamlessly with WordPress. These can be free in the WordPress.org Plugin Directory https://wordpress.org/plugins/ or can be cost-based plugin from a third-party to enable building templates in FSE.
Latest Posts Block: HTML/CSS output not consistent. 22759
Latest Posts Block: Last element has incorrect right margin. 22911
FSE blocks are missing classnames on the front end. 21903
Site Title: Add support settings for colors, fonts, and line height. 23007
Global Styles
Discussion about presets for line-height, padding and margin. 23111
Tracking and consolidating style attributes for blocks. 22700
Navigation
This board tracks Navigation Screen and Navigation Block issues that are important for the WordPress 5.5 releaseReleaseA release is the distribution of the final version of an application. A software release may be either public or private and generally constitutes the initial or new generation of a new or upgraded application. A release is preceded by the distribution of alpha and then beta versions of the software.. Project Overview
Merged:
General
New padding control to cover block. (21492, 23041)
New link color control to paragraph, heading, group, columns, and media-text blocks. (22722, 23025, 23049)
Block-based Themes
Fixing a bug when themes provided index.html but no front-page.html. 22954
Status updates for BlockBlockBlock is the abstract term used to describe units of markup that, composed together, form the content or layout of a webpage using the WordPress editor. The idea combines concepts of what in the past may have achieved with shortcodes, custom HTML, and embed discovery into a single consistent API and user experience.-based Theme efforts in GutenbergGutenbergThe Gutenberg project is the new Editor Interface for WordPress. The editor improves the process and experience of creating new content, making writing rich content much simpler. It uses ‘blocks’ to add richness rather than shortcodes, custom HTML etc. https://wordpress.org/gutenberg/:
Features and fixes in Gutenberg v8.3
In-progress issues and PRs to keep an eye on
Discussion
How should global styles support declaring fonts?
Calls for help / what are you working on?
Q&A / Open Floor
Please comment if you have any topics or demos you’d like to see covered in future meetings!
Added tested up to and Requires PHPPHPPHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML. http://php.net/manual/en/intro-whatis.php. checks for the style.css
Added register_block_type to pluginPluginA plugin is a piece of software containing a group of functions that can be added to a WordPress website. They can extend functionality or add new features to your WordPress websites. WordPress plugins are written in the PHP programming language and integrate seamlessly with WordPress. These can be free in the WordPress.org Plugin Directory https://wordpress.org/plugins/ or can be cost-based plugin from a third-party territory check
If you would like to contribute to Theme Check, issues and pull requests are welcome.
If you are experiencing problems with uploading your theme, you can open a issue on GithubGitHubGitHub is a website that offers online implementation of git repositories that can can easily be shared, copied and modified by other developers. Public repositories are free to host, private repositories require a paid subscription. GitHub introduced the concept of the ‘pull request’ where code changes done in branches by contributors can be reviewed and discussed before being merged be the repository owner. https://github.com/. We may need a copy of your theme to trouble shoot.