'ffffff', 'border' => 'e5e5e5', 'text' => '333333', 'link' => '6ab4cf', 'url' => '60a4bd', ); } // Enable support for WP.com global print style. add_theme_support( 'print-style' ); } add_action( 'after_setup_theme', 'mckinley_wpcom_setup' ); /** * Dequeue font styles when Typekit is active. * * @since Mckinley 1.0 */ function mckinley_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'] ) ) wp_dequeue_style( 'mckinley-fonts' ); } } add_action( 'wp_enqueue_scripts', 'mckinley_dequeue_fonts' );