'ffffff', 'border' => 'b9b9b9', 'text' => '5e5e5e', 'link' => '7fc7af', 'url' => '7fc7af', ); endif; add_theme_support( 'print-style' ); } add_action( 'after_setup_theme', 'nucleare_theme_support' ); /* * De-queue Google fonts if custom fonts are being used instead */ function nucleare_dequeue_fonts() { if ( class_exists( 'TypekitData' ) && class_exists( 'CustomDesign' ) && CustomDesign::is_upgrade_active() ) { $customfonts = TypekitData::get( 'families' ); if ( $customfonts && $customfonts['site-title']['id'] && $customfonts['headings']['id'] && $customfonts['body-text']['id'] ) { wp_dequeue_style( 'nucleare-fonts' ); } } } add_action( 'wp_enqueue_scripts', 'nucleare_dequeue_fonts' ); //WordPress.com specific styles function nucleare_wpcom_styles() { wp_enqueue_style( 'nucleare-wpcom', get_template_directory_uri() . '/inc/style-wpcom.css', '20150409' ); } add_action( 'wp_enqueue_scripts', 'nucleare_wpcom_styles', 999 );