'fancy-paragraph', 'label' => __( 'Fancy Paragraph', 'betra' ), 'inline_style' => '.wp-block-paragraph.is-style-fancy-paragraph { font-style: italic; color: #205bf2; }', ) ); } add_action( 'init', 'betra_register_block_styles' ); /** * Register custom block patterns. */ function betra_register_block_patterns() { if ( function_exists( 'register_block_pattern' ) ) { register_block_pattern( 'betra/two-column-text', array( 'title' => __( 'Two Column Text', 'betra' ), 'description' => _x( 'A simple two-column layout with text.', 'Block pattern description', 'betra' ), 'content' => "\n
" . __( 'Column one content goes here.', 'betra' ) . "
" . __( 'Column two content goes here.', 'betra' ) . "