Skip to content

Instantly share code, notes, and snippets.

@jeremyfelt
Created February 27, 2021 23:22
Show Gist options
  • Save jeremyfelt/92167d2bce99eaa87f6f42a6f1dc735a to your computer and use it in GitHub Desktop.
Save jeremyfelt/92167d2bce99eaa87f6f42a6f1dc735a to your computer and use it in GitHub Desktop.
Limit block types allowed
<?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