'fffdfd', 'border' => 'e2e7e8', 'text' => '606666', 'link' => 'bf5c19', 'url' => 'bf5c19', ); } add_theme_support( 'print-style' ); } add_action( 'after_setup_theme', 'satellite_wpcom_setup' ); /* * De-queue Google fonts if custom fonts are being used instead */ function satellite_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( 'satellite-fonts' ); } } } add_action( 'wp_enqueue_scripts', 'satellite_dequeue_fonts' ); //WordPress.com specific styles function satellite_wpcom_styles() { wp_enqueue_style( 'satellite-wpcom', get_stylesheet_directory_uri() . '/inc/style-wpcom.css', '20150314' ); } add_action( 'wp_head', 'satellite_wpcom_styles', 3 ); //Hooked into wp_head to override WP.com native styles