Display Conditions

Change block visibility based on the screen size in Ghost Kit and Core blocks.

Available Tools

  • Screen Size

Enable in 3rd-party blocks

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