6 lines
145 B
PHP
6 lines
145 B
PHP
<?php
|
|
function my_block_theme_setup() {
|
|
add_theme_support( 'block-templates' );
|
|
}
|
|
add_action( 'after_setup_theme', 'my_block_theme_setup' );
|