Attributes

Table of Contents

This is a part of the Ghost Kit Pro plugin.
Purchase the Pro plugin to access this and other advanced features.

The Attributes extension puts your own HTML attributes on a WordPress block wrapper. A data- attribute for a script to read, an aria- attribute the block does not offer, an id another tool expects. It is part of Ghost Kit Pro.

Enable in 3rd-party blocks

<?php
registerBlockType( 'my/block', {
    title: 'My block',
    supports: {
        ghostkit: {
            attributes: true,
        }
    },
    ...
} );
Was this page helpful?