Theme Files

This commit is contained in:
Jeremy Rangel
2024-11-13 16:32:19 -08:00
parent 8de1a43a8c
commit f356906bb1
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,5 @@
<?php
function my_block_theme_setup() {
add_theme_support( 'block-templates' );
}
add_action( 'after_setup_theme', 'my_block_theme_setup' );