Created
February 27, 2021 23:22
-
-
Save jeremyfelt/92167d2bce99eaa87f6f42a6f1dc735a to your computer and use it in GitHub Desktop.
Limit block types allowed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace JF; | |
add_action( 'init', __NAMESPACE__ . '\register_post_type', 10 ); | |
add_filter( 'allowed_block_types', __NAMESPACE__ . '\filter_allowed_block_types', 10, 2 ); | |
function register_post_type() { | |
\register_post_type( | |
'exampletype', | |
array( | |
'labels' => array( | |
'name' => 'Examples', | |
'singular_name' => 'Example', | |
), | |
'public' => true, | |
'show_in_rest' => true, | |
'supports' => array( | |
'title', | |
'editor', | |
), | |
) | |
); | |
} | |
function filter_allowed_block_types( $allowed_block_types, $post ) { | |
if ( 'exampletype' === $post->post_type ) { | |
return array( | |
'core/paragraph', | |
'core/image', | |
'core/gallery', | |
); | |
} | |
return $allowed_block_types; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment