Files
Wordpress-Snippets/Gutenberg/check-inner-blocks.php
2024-11-05 07:01:10 +00:00

4 lines
200 B
PHP

// Check if the block is a 'core/post-featured-image'
if ( 'core/post-featured-image' === $block->name ) {
return true; // Found a block using the featured image
}