Skip to content

Instantly share code, notes, and snippets.

@danielstrelec
Created January 3, 2019 15:19
Show Gist options
  • Select an option

  • Save danielstrelec/0483bbc8190b5c0077617dcf46f6489e to your computer and use it in GitHub Desktop.

Select an option

Save danielstrelec/0483bbc8190b5c0077617dcf46f6489e to your computer and use it in GitHub Desktop.
// povolení vybraných bloků v editoru
function editor_allow_types( $allowed_blocks ) {
return array(
'core/image',
'core/paragraph',
'core/heading',
'core/list',
'core/table'
);
}
add_filter( 'allowed_block_types', 'editor_allow_types' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment