Skip to content

Latest commit

 

History

History
849 lines (631 loc) · 24.2 KB

block-supports.md

File metadata and controls

849 lines (631 loc) · 24.2 KB

Supports

Block Supports is the API that allows a block to declare support for certain features.

Opting into any of these features will register additional attributes on the block and provide the UI to manipulate that attribute.

In order for the attribute to get applied to the block the generated properties get added to the wrapping element of the block. They get added to the object you get returned from the useBlockProps hook.

BlockEdit function:

function BlockEdit() {
	const blockProps = useBlockProps();

	return (
		<div {...blockProps}>Hello World!</div>
	);
}

save function:

function BlockEdit() {
	const blockProps = useBlockProps.save();

	return (
		<div {...blockProps}>Hello World!</div>
	);
}

For dynamic blocks that get rendered via a render_callback in PHP you can use the get_block_wrapper_attributes() function. It returns a string containing all the generated properties and needs to get output in the opening tag of the wrapping block element.

render_callback function:

function render_block() {
	$wrapper_attributes = get_block_wrapper_attributes();

	return sprintf(
		'<div %1$s>%2$s</div>',
		$wrapper_attributes,
		'Hello World!'
	);
}

anchor

  • Type: boolean
  • Default value: false

Anchors let you link directly to a specific block on a page. This property adds a field to define an id for the block and a button to copy the direct link. Important: It doesn't work with dynamic blocks yet.

// Declare support for anchor links.
supports: {
	anchor: true
}

align

  • Type: boolean or array
  • Default value: false

This property adds block controls which allow to change block's alignment.

supports: {
	// Declare support for block's alignment.
	// This adds support for all the options:
	// left, center, right, wide, and full.
	align: true
}
supports: {
	// Declare support for specific alignment options.
	align: [ 'left', 'right', 'full' ]
}

When the block declares support for align, the attributes definition is extended to include an align attribute with a string type. By default, no alignment is assigned. The block can apply a default alignment by specifying its own align attribute with a default e.g.:

attributes: {
    align: {
        type: 'string',
        default: 'right'
    }
}

alignWide

  • Type: boolean
  • Default value: true

This property allows to enable wide alignment for your theme. To disable this behavior for a single block, set this flag to false.

supports: {
	// Remove the support for wide alignment.
	alignWide: false
}

ariaLabel

  • Type: boolean
  • Default value: false

ARIA-labels let you define an accessible label for elements. This property allows enabling the definition of an aria-label for the block, without exposing a UI field.

supports: {
	// Add the support for aria label.
	ariaLabel: true
}

className

  • Type: boolean
  • Default value: true

By default, the class .wp-block-your-block-name is added to the root element of your saved markup. This helps having a consistent mechanism for styling blocks that themes and plugins can rely on. If, for whatever reason, a class is not desired on the markup, this functionality can be disabled.

supports: {
	// Remove the support for the generated className.
	className: false
}

color

  • Type: Object
  • Default value: null
  • Subproperties:
    • background: type boolean, default value true
    • gradients: type boolean, default value false
    • link: type boolean, default value false
    • text: type boolean, default value true

This value signals that a block supports some of the properties related to color. When it does, the block editor will show UI controls for the user to set their values.

Note that the background and text keys have a default value of true, so if the color property is present they'll also be considered enabled:

supports: {
	color: {
		// This also enables text and background UI controls.
		gradients: true // Enable gradients UI control.
	}
}

It's possible to disable them individually:

supports: {
    color: { // Text UI control is enabled.
        background: false, // Disable background UI control.
        gradients: true // Enable gradients UI control.
    }
}

color.background

This property adds UI controls which allow the user to apply a solid background color to a block.

When color support is declared, this property is enabled by default (along with text), so simply setting color will enable background color.

supports: {
    color: true // Enables background and text
}

To disable background support while keeping other color supports enabled, set to false.

supports: {
    color: {
        // Disable background support. Text color support is still enabled.
        background: false
    }
}

When the block declares support for color.background, the attributes definition is extended to include two new attributes: backgroundColor and style:

  • backgroundColor: attribute of string type with no default assigned.

    When a user chooses from the list of preset background colors, the preset slug is stored in the backgroundColor attribute.

    Background color presets are sourced from the editor-color-palette theme support.

    The block can apply a default preset background color by specifying its own attribute with a default e.g.:

    attributes: {
        backgroundColor: {
            type: 'string',
            default: 'some-preset-background-slug',
        }
    }
  • style: attribute of object type with no default assigned.

    When a custom background color is selected (i.e. using the custom color picker), the custom color value is stored in the style.color.background attribute.

    The block can apply a default custom background color by specifying its own attribute with a default e.g.:

    attributes: {
        style: {
            type: 'object',
            default: {
                color: {
                    background: '#aabbcc',
                }
            }
        }
    }

color.__experimentalDuotone

Note: Deprecated since WordPress 6.3.

This property has been replaced by filter.duotone.

color.gradients

This property adds UI controls which allow the user to apply a gradient background to a block.

supports: {
    color: {
        gradients: true,

        // Default values must be disabled if you don't want to use them with gradient.
        background: false,
        text: false
    }
}

Gradient presets are sourced from editor-gradient-presets theme support.

When the block declares support for color.gradient, the attributes definition is extended to include two new attributes: gradient and style:

  • gradient: attribute of string type with no default assigned.

    When a user chooses from the list of preset gradients, the preset slug is stored in the gradient attribute.

    The block can apply a default preset gradient by specifying its own attribute with a default e.g.:

    attributes: {
        gradient: {
            type: 'string',
            default: 'some-preset-gradient-slug',
        }
    }
  • style: attribute of object type with no default assigned.

    When a custom gradient is selected (i.e. using the custom gradient picker), the custom gradient value is stored in the style.color.gradient attribute.

    The block can apply a default custom gradient by specifying its own attribute with a default e.g.:

    attributes: {
        style: {
            type: 'object',
            default: {
                color: {
                    gradient: 'linear-gradient(135deg,rgb(170,187,204) 0%,rgb(17,34,51) 100%)',
                }
            }
        }
    }

color.link

This property adds block controls which allow the user to set link color in a block, link color is disabled by default.

supports: {
    color: true // Enables only background and text
}

To enable link color support, set to true.

supports: {
    color: {
        link: true
    }
}

Link color presets are sourced from the editor-color-palette theme support.

When the block declares support for color.link, the attributes definition is extended to include the style attribute:

  • style: attribute of object type with no default assigned.

    When a link color is selected, the color value is stored in the style.elements.link.color.text attribute.

    The block can apply a default link color by specifying its own attribute with a default e.g.:

    attributes: {
        style: {
            type: 'object',
            default: {
                elements: {
                    link: {
                        color: {
                            text: '#ff0000',
                        }
                    }
                }
            }
        }
    }

color.text

This property adds block controls which allow the user to set text color in a block.

When color support is declared, this property is enabled by default (along with background), so simply setting color will enable text color.

supports: {
    color: true // Enables background and text, but not link.
}

To disable text color support while keeping other color supports enabled, set to false.

supports: {
    color: {
        // Disable text color support.
        text: false
    }
}

Text color presets are sourced from the editor-color-palette theme support.

When the block declares support for color.text, the attributes definition is extended to include two new attributes: textColor and style:

  • textColor: attribute of string type with no default assigned.

    When a user chooses from the list of preset text colors, the preset slug is stored in the textColor attribute.

    The block can apply a default preset text color by specifying its own attribute with a default e.g.:

    attributes: {
        textColor: {
            type: 'string',
            default: 'some-preset-text-color-slug',
        }
    }
  • style: attribute of object type with no default assigned.

    When a custom text color is selected (i.e. using the custom color picker), the custom color value is stored in the style.color.text attribute.

    The block can apply a default custom text color by specifying its own attribute with a default e.g.:

    attributes: {
        style: {
            type: 'object',
            default: {
                color: {
                    text: '#aabbcc',
                }
            }
        }
    }

customClassName

  • Type: boolean
  • Default value: true

This property adds a field to define a custom className for the block's wrapper.

supports: {
	// Remove the support for the custom className.
	customClassName: false
}

defaultStylePicker

  • Type: boolean
  • Default value: true

When the style picker is shown, the user can set a default style for a block type based on the block's currently active style. If you prefer not to make this option available, set this property to false.

supports: {
	// Remove the Default Style picker.
	defaultStylePicker: false
}

dimensions

Note: Since WordPress 6.2.

  • Type: Object
  • Default value: null
  • Subproperties:
    • minHeight: type boolean, default value false

This value signals that a block supports some of the CSS style properties related to dimensions. When it does, the block editor will show UI controls for the user to set their values if the theme declares support.

supports: {
    dimensions: {
        minHeight: true // Enable min height control.
    }
}

When a block declares support for a specific dimensions property, its attributes definition is extended to include the style attribute.

  • style: attribute of object type with no default assigned. This is added when minHeight support is declared. It stores the custom values set by the user, e.g.:
attributes: {
    style: {
        dimensions: {
            minHeight: "50vh"
        }
    }
}

filter

  • Type: Object
  • Default value: null
  • Subproperties:
    • duotone: type boolean, default value false

This value signals that a block supports some of the properties related to filters. When it does, the block editor will show UI controls for the user to set their values.

filter.duotone

This property adds UI controls which allow the user to apply a duotone filter to a block or part of a block.

supports: {
    filter: {
        // Enable duotone support
        duotone: true
    }
},
selectors: {
    filter: {
        // Apply the filter to img elements inside the image block
        duotone: '.wp-block-image img'
    }
}

The filter can be applied to an element inside the block by setting the selectors.filter.duotone selector.

Duotone presets are sourced from color.duotone in theme.json.

When the block declares support for filter.duotone, the attributes definition is extended to include the attribute style:

  • style: attribute of object type with no default assigned.

    The block can apply a default duotone color by specifying its own attribute with a default e.g.:

    attributes: {
        style: {
            type: 'object',
            default: {
                color: {
                    duotone: [
                        '#FFF',
                        '#000'
                    ]
                }
            }
        }
    }

html

  • Type: boolean
  • Default value: true

By default, a block's markup can be edited individually. To disable this behavior, set html to false.

supports: {
	// Remove support for an HTML mode.
	html: false
}

inserter

  • Type: boolean
  • Default value: true

By default, all blocks will appear in the inserter, block transforms menu, Style Book, etc. To hide a block from all parts of the user interface so that it can only be inserted programmatically, set inserter to false.

supports: {
	// Hide this block from the inserter.
	inserter: false
}

layout

  • Type: boolean or Object
  • Default value: null
  • Subproperties:
    • default: type Object, default value null
    • allowSwitching: type boolean, default value false
    • allowEditing: type boolean, default value true
    • allowInheriting: type boolean, default value true
    • allowSizingOnChildren: type boolean, default value false
    • allowVerticalAlignment: type boolean, default value true
    • allowJustification: type boolean, default value true
    • allowOrientation: type boolean, default value true

This value only applies to blocks that are containers for inner blocks. If set to true the layout type will be flow. For other layout types it's necessary to set the type explicitly inside the default object.

layout.default

  • Type: Object
  • Default value: null

Allows setting the type property to define what layout type is default for the block, and also default values for any properties inherent to that layout type, e.g., for a flex layout, a default value can be set for flexWrap.

layout.allowSwitching

  • Type: boolean
  • Default value: false

Exposes a switcher control that allows toggling between all existing layout types.

layout.allowEditing

  • Type: boolean
  • Default value: true

Determines display of layout controls in the block sidebar. If set to false, layout controls will be hidden.

layout.allowInheriting

  • Type: boolean
  • Default value: true

For the flow layout type only, determines display of the "Inner blocks use content width" toggle.

layout.allowSizingOnChildren

  • Type: boolean
  • Default value: false

For the flex layout type only, determines display of sizing controls (Fit/Fill/Fixed) on all child blocks of the flex block.

layout.allowVerticalAlignment

  • Type: boolean
  • Default value: true

For the flex layout type only, determines display of the vertical alignment control in the block toolbar.

layout.allowJustification

  • Type: boolean
  • Default value: true

For the flex layout type, determines display of the justification control in the block toolbar and block sidebar. For the constrained layout type, determines display of justification control in the block sidebar.

layout.allowOrientation

  • Type: boolean
  • Default value: true

For the flex layout type only, determines display of the orientation control in the block toolbar.

multiple

  • Type: boolean
  • Default value: true

A non-multiple block can be inserted into each post, one time only. For example, the built-in 'More' block cannot be inserted again if it already exists in the post being edited. A non-multiple block's icon is automatically dimmed (unclickable) to prevent multiple instances.

supports: {
	// Use the block just once per post
	multiple: false
}

reusable

  • Type: boolean
  • Default value: true

A block may want to disable the ability of being converted into a reusable block. By default all blocks can be converted to a reusable block. If supports reusable is set to false, the option to convert the block into a reusable block will not appear.

supports: {
	// Don't allow the block to be converted into a reusable block.
	reusable: false,
}

lock

  • Type: boolean
  • Default value: true

A block may want to disable the ability to toggle the lock state. It can be locked/unlocked by a user from the block "Options" dropdown by default. To disable this behavior, set lock to false.

supports: {
	// Remove support for locking UI.
	lock: false
}

position

Note: Since WordPress 6.2.

  • Type: Object
  • Default value: null
  • Subproperties:
    • sticky: type boolean, default value false

This value signals that a block supports some of the CSS style properties related to position. When it does, the block editor will show UI controls for the user to set their values if the theme declares support.

Note that sticky position controls are currently only available for blocks set at the root level of the document. Setting a block to the sticky position will stick the block to its most immediate parent when the user scrolls the page.

supports: {
    position: {
        sticky: true // Enable selecting sticky position.
    }
}

When the block declares support for a specific position property, its attributes definition is extended to include the style attribute.

  • style: attribute of object type with no default assigned. This is added when sticky support is declared. It stores the custom values set by the user, e.g.:
attributes: {
    style: {
        position: {
            type: "sticky",
            top: "0px"
        }
    }
}

spacing

  • Type: Object
  • Default value: null
  • Subproperties:
    • margin: type boolean or array, default value false
    • padding: type boolean or array, default value false
    • blockGap: type boolean or array, default value false

This value signals that a block supports some of the CSS style properties related to spacing. When it does, the block editor will show UI controls for the user to set their values if the theme declares support.

supports: {
    spacing: {
        margin: true,  // Enable margin UI control.
        padding: true, // Enable padding UI control.
        blockGap: true,  // Enables block spacing UI control for blocks that also use `layout`.
    }
}

When the block declares support for a specific spacing property, its attributes definition is extended to include the style attribute.

  • style: attribute of object type with no default assigned. This is added when margin or padding support is declared. It stores the custom values set by the user, e.g.:
attributes: {
    style: {
	type: 'object',
	default: {
	    spacing: {
		margin: '2rem',
		padding: {
		    top: '2rem'
		}
	    }
	}
    }
}

A spacing property may define an array of allowable sides – 'top', 'right', 'bottom', 'left' – that can be configured. When such arbitrary sides are defined, only UI controls for those sides are displayed.

Axial sides are defined with the vertical and horizontal terms, and display a single UI control for each axial pair (for example, vertical controls both the top and bottom sides). A spacing property may support arbitrary individual sides or axial sides, but not a mix of both.

Note: blockGap accepts vertical and horizontal axial sides, which adjust gap column and row values. blockGap doesn't support arbitrary sides.

supports: {
    spacing: {
        margin: [ 'top', 'bottom' ],             // Enable margin for arbitrary sides.
        padding: true,                           // Enable padding for all sides.
        blockGap: [ 'horizontal', 'vertical' ],  // Enables axial (column/row) block spacing controls
    }
}

typography

  • Type: Object
  • Default value: null
  • Subproperties:
    • fontSize: type boolean, default value false
    • lineHeight: type boolean, default value false

The presence of this object signals that a block supports some typography related properties. When it does, the block editor will show a typography UI allowing the user to control their values.

supports: {
    typography: {
        // Enable support and UI control for font-size.
        fontSize: true,
        // Enable support and UI control for line-height.
        lineHeight: true,
    },
}

typography.fontSize

  • Type: boolean
  • Default value: false

This value signals that a block supports the font-size CSS style property. When it does, the block editor will show an UI control for the user to set its value.

The values shown in this control are the ones declared by the theme via the editor-font-sizes theme support, or the default ones if none are provided.

supports: {
    typography: {
        // Enable support and UI control for font-size.
        fontSize: true,
    },
}

When the block declares support for fontSize, the attributes definition is extended to include two new attributes: fontSize and style:

  • fontSize: attribute of string type with no default assigned. It stores any preset value selected by the user. The block can apply a default fontSize by specifying its own fontSize attribute with a default e.g.:
attributes: {
    fontSize: {
        type: 'string',
        default: 'some-value',
    }
}
  • style: attribute of object type with no default assigned. It stores the custom values set by the user and is shared with other block supports such as color. The block can apply a default style by specifying its own style attribute with a default e.g.:
attributes: {
    style: {
        type: 'object',
        default: {
            typography: {
                fontSize: 'value'
            }
        }
    }
}

typography.lineHeight

  • Type: boolean
  • Default value: false

This value signals that a block supports the line-height CSS style property. When it does, the block editor will show an UI control for the user to set its value if the theme declares support.

supports: {
    typography: {
        // Enable support and UI control for line-height.
        lineHeight: true,
    },
}

When the block declares support for lineHeight, the attributes definition is extended to include a new attribute style of object type with no default assigned. It stores the custom value set by the user. The block can apply a default style by specifying its own style attribute with a default e.g.:

attributes: {
    style: {
        type: 'object',
        default: {
            typography: {
                lineHeight: 'value'
            }
        }
    }
}