Add Gutenberg/check-inner-blocks.php

Initial
This commit is contained in:
2024-11-05 07:01:10 +00:00
commit 77c5d3e711

View File

@ -0,0 +1,4 @@
// 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
}