8f72219e9d
* Blockbase: Add child CSS if it exists * add comment
24 lines
511 B
PHP
24 lines
511 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;
|
|
|
|
/**
|
|
* Block Patterns.
|
|
*/
|
|
require get_stylesheet_directory() . '/inc/block-patterns.php';
|
|
|
|
/**
|
|
* Block Styles.
|
|
*/
|
|
require get_stylesheet_directory() . '/inc/block-styles.php';
|