Snippets repository for WordPress developpers

Browse
// functions.php
add_filter( 'allowed_block_types', 'sp_allowed_block_types', 10, 2 );
function sp_allowed_block_types( $allowed_blocks, $post ) {
  $allowed_blocks = array(
    'core/image',
    'core/paragraph',
    'core/heading',
    'core/list'
  );
  if( $post->post_type === 'page' ) {
    $allowed_blocks[] = 'core/shortcode';
  }
  return $allowed_blocks; 
}

Warning: Trying to access array offset on null in /home/clients/7f7a8d8eb6e40c50d3548b06c548734d/web/wp-includes/class-wp-query.php on line 3766

Categories

Tags