functions.php 331 B

1234567891011121314
  1. <?php
  2. if ( ! function_exists( 'quadrat_support' ) ) :
  3. function quadrat_support() {
  4. // Add support for starter content
  5. include get_stylesheet_directory() . '/inc/starter-content.php';
  6. add_theme_support(
  7. 'starter-content',
  8. $quadrat_starter_content
  9. );
  10. }
  11. add_action( 'after_setup_theme', 'quadrat_support' );
  12. endif;