-
-
Save larsmqller/536bee66b6c904bcf467f701c72fa781 to your computer and use it in GitHub Desktop.
Gutenberg core blocks list
This file contains hidden or 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
// Útil para filtros de Gutenberg como "allowed_block_types" | |
archives | |
audio | |
button | |
categories | |
code | |
column | |
columns | |
coverImage | |
embed | |
file | |
freeform | |
gallery | |
heading | |
html | |
image | |
latestComments | |
latestPosts | |
list | |
more | |
nextpage | |
paragraph | |
preformatted | |
pullquote | |
quote | |
reusableBlock | |
separator | |
shortcode | |
spacer | |
subhead | |
table | |
textColumns | |
verse | |
video |
This file contains hidden or 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 | |
// Filtro para limitar el tipo de bloques que admite un CPT 'libro'. | |
function scv_allowed_block_types( $allowed_block_types, $post ) { | |
if ( $post->post_type === 'libro' ) { | |
return array( | |
'core/paragraph', | |
'core/image', | |
'core/list' | |
); | |
} | |
return $allowed_block_types; | |
} | |
add_filter( 'allowed_block_types', 'scv_allowed_block_types', 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment