How do I hide the UI for specific Gutenberg Blocks?
I have found a article about this filter but I am supposed to pass a array of allowed blocks to it. This is what I got so far that ddd
is my debugging function from Kint Debugger it reveals that the $allowed_blocks
contains a bool true
value rather then a array of all blocks I expected. So where do I get a array of all blocks? What a horrible WP API.
add_filter( 'allowed_block_types', __NAMESPACE__ . '\remove_core_video_blocks' );
function remove_core_video_blocks( $allowed_blocks ) {
#ddd($allowed_blocks);
$allowed_blocks = array_diff( $allowed_blocks, [ 'core-embed/youtube' ] );
return $allowed_blocks;
}
I tried
return array(
'core/image',
'core/paragraph',
'core/heading',
'core/list'
);
and that disabled the Block UI but the YouTube block I already had in the post continues to work so I guess the filter does what I am looking for I just need a array of all blocks at that point.
Topic block-editor user-interface Wordpress
Category Web