'ffeb01', 'border' => '2c2c2c', 'text' => '886e04', 'link' => 'ffffff', 'url' => 'ffffff', ); add_theme_support( 'print-style' ); } add_action( 'after_setup_theme', 'fanwood_light_add_wpcom_support' ); // Dequeue the font script if the blog has WP.com Custom Design. function fanwood_light_dequeue_fonts() { if ( class_exists( 'TypekitData' ) && class_exists( 'CustomDesign' ) ) { if ( CustomDesign::is_upgrade_active() ) { $customfonts = TypekitData::get( 'families' ); if ( ! $customfonts ) return; $site_title = $customfonts['site-title']; $headings = $customfonts['headings']; $body_text = $customfonts['body-text']; if ( $site_title['id'] && $headings['id'] && $body_text['id'] ) { wp_dequeue_style( 'ChunkFiveWeb' ); } } } } add_action( 'wp_enqueue_scripts', 'fanwood_light_dequeue_fonts' );