functions.php 366 B

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