Skip to content

Instantly share code, notes, and snippets.

@Zodiac1978
Created September 11, 2024 09:48
Show Gist options
  • Save Zodiac1978/360bd346ceef93d992048f4e1ea00743 to your computer and use it in GitHub Desktop.
Save Zodiac1978/360bd346ceef93d992048f4e1ea00743 to your computer and use it in GitHub Desktop.
Add new heading style for an outline
<?php
/**
* Block Styles
*
* @link https://developer.wordpress.org/reference/functions/register_block_style/
*
* @package WordPress
* @subpackage HeaderOutline
* @since HeaderOutline 1.0
*/
if ( function_exists( 'register_block_style' ) ) {
/**
* Register block styles.
*
* @since HeaderOutline 1.0
*
* @return void
*/
function more_block_styles_register_block_styles() {
// Headings
register_block_style(
'core/heading',
array(
'name' => 'outline-typo',
'label' => __( 'Outline Typo', 'more-block-styles' ),
'is_default' => false,
'inline_style' => '.wp-block-heading.is-style-outline-typo {
color: transparent;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: #333; // How do I get the real used current color from the block editor?
}',
)
);
}
add_action( 'init', 'more_block_styles_register_block_styles' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment