Created
February 4, 2024 23:46
-
-
Save justintadlock/257087c52e46272f1445fd8ff60c8d83 to your computer and use it in GitHub Desktop.
Paragraph indent block style
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 | |
add_action( 'init', function() { | |
register_block_style('core/paragraph', [ | |
'name' => 'indent', | |
'label' => __('Indent', 'themeslug'), | |
'inline_style' => 'p.is-style-indent { | |
text-indent: 3rem; | |
}' | |
]); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment