themes-wordpress/quadrat-red/functions.php
Ben Dwyer 1483ab4a9f
Remove block style registration (#5368)
* Remove block style registration

* update variations

* Revert seedlet changes
2022-02-02 16:00:30 +00:00

14 lines
331 B
PHP

<?php
if ( ! function_exists( 'quadrat_support' ) ) :
function quadrat_support() {
// Add support for starter content
include get_stylesheet_directory() . '/inc/starter-content.php';
add_theme_support(
'starter-content',
$quadrat_starter_content
);
}
add_action( 'after_setup_theme', 'quadrat_support' );
endif;