'ffffff', 'default-image' => '', ) ) ); /** * About Theme Function */ require get_theme_file_path( '/about-theme/about-theme.php' ); /** * Customizer */ require get_template_directory() . '/inc/customizer.php'; /** * TGM */ require get_template_directory() . '/tgm.php'; } endif; add_action( 'after_setup_theme', 'bluetooth_speaker_setup' ); if ( ! function_exists( 'bluetooth_speaker_styles' ) ) : function bluetooth_speaker_styles() { // Register theme stylesheet. wp_register_style('bluetooth-speaker-style', get_template_directory_uri() . '/style.css',array(), wp_get_theme()->get( 'Version' ) ); // Enqueue theme stylesheet. wp_enqueue_style( 'bluetooth-speaker-style' ); } endif; add_action( 'wp_enqueue_scripts', 'bluetooth_speaker_styles' );