Display Conditions

Display Conditions shows or hides a WordPress block at each screen size. Use it when a block belongs on a wide screen and gets in the way on a phone, or the other way around. There is nothing to duplicate and no stylesheet to edit.

Available Tools

  • Screen Size

Enable in 3rd-party blocks

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