本文档介绍了 WordPress 块注册 API,重点讲解如何使用 registerBlockType 函数在客户端注册块,并推荐结合 PHP 和 block.json 文件进行服务器端注册。文档详细说明了块名称、配置对象及其关键属性,如 title、category、icon 等,以帮助开发者创建和管理自定义块。
// 注册块示例
registerBlockType( 'my-plugin/book', {
title: __( 'Book' ),
category: 'widgets',
icon: 'book-alt',
attributes: {
cover: {
type: 'string',
source: 'attribute',
selector: 'img',
attribute: 'src',
},
},
example: {
attributes: {
cover: 'https://example.com/image.jpg',
},
},
} );
// 注册块集合示例
registerBlockCollection( 'my-plugin', { title: 'My Plugin' } );Block registration API reference.
Learn how to create your first block for the WordPress block editor. From setting up your development environment, tools, and getting comfortable with the new development model, this tutorial covers all you need to know to get started with creating blocks.
registerBlockTypeFunctionEvery block starts by registering a new block type definition. To register, you use the registerBlockType function from the wp-blocks package. The function takes two arguments, a block name and a block configuration object.
StringThe name for a block is a unique string that identifies a block. Names have to be structured as namespace/block-name, where namespace is the name of your plugin or theme.
// Registering my block with a unique name
registerBlockType( 'my-plugin/book', {} );
Note: A block name can only contain lowercase alphanumeric characters and dashes, and must begin with a letter.
Note: This name is used on the comment delimiters as <!-- wp:my-plugin/book -->. Those blocks provided by core don’t include a namespace when serialized.
Block names cannot be changed later without consequences. The block name is stored in the post content of every post using that block, so changing it requires editing all affected posts or running database scripts.
my-awesome-plugin/block-nameeditorial/, block/, or create-block/// Good examples
registerBlockType( 'my-company-blocks/hero', {} );
registerBlockType( 'awesome-gallery-plugin/slideshow', {} );
// Avoid these
registerBlockType( 'create-block/example', {} ); // Too generic
registerBlockType( 'block/content', {} ); // Too generic
Note: registerBlockCollection() only works with blocks from a single namespace.
Object [ { key: value } ]A block requires a few properties to be specified before it can be registered successfully. These are defined through a configuration object, which includes the following:
StringThis is the display title for your block, which can be translated with our translation functions. The title will display in the Inserter and in other areas of the editor.
// Our data object
title: __( 'Book' );
Note: To keep your block titles readable and accessible in the UI, try to avoid very long titles.
StringThis is a short description for your block, which can be translated with our translation functions. This will be shown in the Block Tab in the Settings Sidebar.
description: __( 'Block showing a Book card.' );
String [ text | media | design | widgets | theme | embed ]Blocks are grouped into categories to help users browse and discover them.
The core provided categories are:
// Assigning to the 'widgets' category
category: 'widgets',
Plugins and Themes can also register custom block categories.
String | ObjectAn icon property should be specified to make it easier to identify a block. These can be any of WordPress’ Dashicons, or a custom svg element.
// Specifying a dashicon for the block
icon: 'book-alt',
// Specifying a custom svg for the block
icon: <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" d="M0 0h24v24H0V0z" /><path d="M19 13H5v-2h14v2z" /></svg>,
Note: Custom SVG icons are automatically wrapped in the wp.primitives.SVG component to add accessibility attributes (aria-hidden, role, and focusable).
An object can also be passed as icon, in this case, icon, as specified above, should be included in the src property.
Besides src the object can contain background and foreground colors, these colors will appear with the icon when they are applicable e.g.: in the inserter.
icon: {
// Specifying a background color to appear with the icon e.g.: in the inserter.
background: '#7e70af',
// Specifying a color for the icon (optional: if not set, a readable color will be automatically defined)
foreground: '#fff',
// Specifying an icon for the block
src: <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" d="M0 0h24v24H0V0z" /><path d="M19 13H5v-2h14v2z" /></svg>,
} ,
ArraySometimes a block could have aliases that help users discover it while searching. For example, an image block could also want to be discovered by photo. You can do so by providing an array of terms (which can be translated).
// Make it easier to discover a block with keyword aliases.
// These can be localised so your keywords work across locales.
keywords: [ __( 'image' ), __( 'photo' ), __( 'pics' ) ],
ArrayBlock styles can be used to provide alternative styles to block. It works by adding a class name to the block’s wrapper. Using CSS, a theme developer can target the class name for the block style if it is selected.
// Register block styles.
styles: [
// Mark style as default.
{
name: 'default',
label: __( 'Rounded' ),
isDefault: true
},
{
name: 'outline',
label: __( 'Outline' )
},
{
name: 'squared',
label: __( 'Squared' )
},
],
Plugins and Themes can also register custom block styles for existing blocks.
ObjectAttributes provide the structured data needs of a block. They can exist in different forms when they are serialized, but they are declared together under a common interface.
// Specifying my block attributes
attributes: {
cover: {
type: 'string',
source: 'attribute',
selector: 'img',
attribute: 'src',
},
author: {
type: 'string',
source: 'html',
selector: '.book-author',
},
pages: {
type: 'number',
},
},
ObjectExample provides structured example data for the block. This data is used to construct a preview for the block to be shown in the Inspector Help Panel when the user mouses over the block and in the Styles panel when the block is selected.
The data provided in the example object should match the attributes defined. For example:
example: {
attributes: {
cover: 'https://example.com/image.jpg',
author: 'William Shakespeare',
pages: 500
},
},
If example is not defined, the preview will not be shown. So even if no attributes are defined, setting an empty example object example: {} will trigger the preview to show.
It’s also possible to extend the block preview with inner blocks via innerBlocks. For example:
example: {
attributes: {
cover: 'https://example.com/image.jpg',
},
innerBlocks: [
{
name: 'core/paragraph',
attributes: {
/* translators: example text. */
content: __(
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.'
),
},
},
],
},
It’s also possible to define the width of the preview container in pixels via viewportWidth. For example:
example: {
attributes: {
cover: 'https://example.com/image.jpg',
},
viewportWidth: 800
},
Object[]WordPress 5.9.0Similarly to how the block’s styles can be declared, a block type can define block variations that the user can pick from. The difference is that, rather than changing only the visual appearance, this field provides a way to apply initial custom attributes and inner blocks at the time when a block is inserted. See the Block Variations API for more details.
ObjectSupports contains a set of options to control features used in the editor. See the supports documentation for more details.
ObjectTransforms provide rules for what a block can be transformed from and what it can be transformed to. A block can be transformed from another block, a shortcode, a regular expression, a file, or a raw DOM node. Take a look at the Block Transforms API for more info about each available transformation.
ArrayBlocks are able to be inserted into blocks that use InnerBlocks as nested content. Sometimes it is useful to restrict a block so that it is only available as a nested block. For example, you might want to allow an ‘Add to Cart’ block to only be available within a ‘Product’ block.
Setting parent lets a block require that it is only available when nested within the specified blocks.
// Only allow this block when it is nested in a Columns block
parent: [ 'core/columns' ],
ArrayWordPress 6.0.0The ancestor property makes a block available inside the specified block types at any position of the ancestor block subtree. That allows, for example, to place a ‘Comment Content’ block inside a ‘Column’ block, as long as ‘Column’ is somewhere within a ‘Comment Template’ block. In comparison to the parent property, blocks that specify their ancestor can be placed anywhere in the subtree whilst blocks with a specified parent need to be direct children.
// Only allow this block when it is nested at any level in a Columns block.
ancestor: [ 'core/columns' ],
ArrayWordPress 6.5.0Setting the allowedBlocks property will limit which block types can be nested as direct children of the block.
// Only allow the Columns block to be nested as direct child of this block
allowedBlocks: [ 'core/columns' ],
ObjectWordPress 6.4.0Block Hooks is an API that allows a block to automatically insert itself next to all instances of a given block type, in a relative position also specified by the “hooked” block. That is, a block can opt to be inserted before or after a given block type, or as its first or last child (i.e. to be prepended or appended to the list of its child blocks, respectively). Hooked blocks will appear both on the frontend and in the editor (to allow for customization by the user).
The key is the name of the block (string) to hook into, and the value is the position to hook into (string). Allowed target values are:
before – inject before the target block.after – inject after the target block.firstChild – inject before the first inner block of the target container block.lastChild – inject after the last inner block of the target container block.{
blockHooks: {
'core/verse': 'before',
'core/spacer': 'after',
'core/column': 'firstChild',
'core/group': 'lastChild',
}
}
registerBlockCollectionFunctionBlocks can be added to collections, grouping together all blocks from the same origin
registerBlockCollection takes two parameters, namespace and an object of settings including title and icon.
StringThis should match the namespace declared in the block name; the name of your plugin or theme.
StringThis will display in the block inserter section, which will list all blocks in this collection.
Object(Optional) An icon to display alongside the title in the block inserter.
// Registering a block collection
registerBlockCollection( 'my-plugin', { title: 'My Plugin' } );