Skip to content

Instantly share code, notes, and snippets.

@frantorres
Last active October 22, 2022 11:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frantorres/72fc848a6c7b4225a5b62112bf50f51a to your computer and use it in GitHub Desktop.
Save frantorres/72fc848a6c7b4225a5b62112bf50f51a to your computer and use it in GitHub Desktop.
Añadir estilo de bloque en Gutenberg.
add_action('init', '_s_block_style');
function _s_block_style() {
register_block_style('core/columns',
[
'name' => 'columna-divertida',
'label' => __('Divertida', '_s')
]
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment