Skip to content

Instantly share code, notes, and snippets.

@justintadlock
Created February 4, 2024 23:46
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 justintadlock/257087c52e46272f1445fd8ff60c8d83 to your computer and use it in GitHub Desktop.
Save justintadlock/257087c52e46272f1445fd8ff60c8d83 to your computer and use it in GitHub Desktop.
Paragraph indent block style
<?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