The WordPress coreCoreCore is the set of software required to run WordPress. The Core Development Team builds WordPress. development team builds WordPress! Follow this sitesite(versus network, blog) for general updates, status reports, and the occasional code debate. There’s lots of ways to contribute:
Found a bugbugA bug is an error or unexpected result. Performance improvements, code optimization, and are considered enhancements, not defects. After feature freeze, only bugs are dealt with, with regressions (adverse changes from the previous version) being the highest priority.?Create a ticket in our bug tracker.
In addition to a number of improvements and features for 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. editor, WordPress 5.3 comes with new Block-related APIs for developers.
Server-side block style variations APIAPIAn API or Application Programming Interface is a software intermediary that allows programs to interact with each other and share data in limited, clearly defined ways.
It includes server-side helpers that simplify registering and unregistering block styles.
Previously, in order to register block styles, one was required to write a JavaScriptJavaScriptJavaScript or JS is an object-oriented computer programming language commonly used to create interactive effects within web browsers. WordPress makes extensive use of JS for a better user experience. While PHP is executed on the server, JS executes within a user’s browser. https://www.javascript.com/. script performing the registration and ensure that the script was enqueued properly. With WordPress 5.3, you can use the register_block_style and unregister_block_stylePHPPHPThe web scripting language in which WordPress is primarily architected. WordPress requires PHP 5.6.20 helpers for the whole process.
register_block_style
The register_block_style function receives the name of the block as the first argument and an array describing properties of the style as the second argument.
The properties of the style array must include name and label:
name: The identifier of the style used to compute a CSSCSSCascading Style Sheets. class.
label: A human-readable label for the style.
Besides the two mandatory properties, the styles properties array should also include an inline_style or a style_handle property:
inline_style: Contains inline CSS code that registers the CSS class required for the style.
style_handle: Contains the handle to an already registered style that should be enqueued in places where block styles are needed.
The following code sample registers a style for the quote block named “Blue Quote”, and provides an inline style that makes quote blocks with the “Blue Quote” style have blue color:
Alternatively, if a stylesheet was already registered containing the CSS for the style variation, it is possible to just pass the stylesheet’s handle so register_block_style function will makemakeA collection of P2 blogs at make.wordpress.org, which are the home to a number of contributor groups, including core development (make/core, formerly "wpdevel"), the UI working group (make/ui), translators (make/polyglots), the theme reviewers (make/themes), resources for plugin authors (make/plugins), and the accessibility working group (make/accessibility). sure it is enqueued properly.
Important: The function unregister_block_style only unregisters styles that were registered on the server using register_block_style. The function does not unregister a style registered using client-side code.
WordPress 5.3 also includes the ability to preview blocks from the library before inserting them. This can help users figure out at a glance which block they want to insert.
To support this feature in your custom blocks, make sure to define the example property in your block settings.
const blockSettings = {
// ... other settings
example: {
attributes: {
content: __( 'Content of the block' )
},
innerBlocks: []
}
}
registerBlockType( name, settings );
Props to @jorgefilipecosta for helping with this dev notedev noteNotes for developers are published on Make/Core blog during the beta phase of WordPress release cycle. Each important change in WordPress Core are documented in a dev note, especially when plugin/theme authors and WordPress developers are supposed to be aware of those change. Good dev notes generally include a description of the change, the decision that led to this change and a description of how developers are supposed to work with that change.
All dev notes are generally listed in the Field Guide, which is published at the beginning of the release candidate phase..