Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Last active November 12, 2019 09:56
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 vanaf1979/691806df61193dd82922ce772d94b7f7 to your computer and use it in GitHub Desktop.
Save vanaf1979/691806df61193dd82922ce772d94b7f7 to your computer and use it in GitHub Desktop.
<?php
function register_uppercase_heading() {
register_block_style(
'core/heading',
array(
'name' => 'uppercase-heading',
'label' => 'Uppercase',
'inline_style' => '.is-style-uppercase-heading { text-transform: uppercase; }'
)
);
}
add_action( 'after_setup_theme' , 'register_uppercase_heading' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment