'f4f0e4', 'border' => 'cccccc', 'text' => '333333', 'link' => '388958', 'url' => '388958', ); //Add print stylesheet add_theme_support( 'print-style' ); } add_action( 'after_setup_theme', 'cheer_wpcom_setup' ); /* * De-queue Google fonts if custom fonts are being used instead. */ function cheer_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( 'cheer-maiden-orange' ); wp_dequeue_style( 'cheer-ribeyemarrow' ); wp_dequeue_style( 'cheer-lancelot' ); } } } add_action( 'wp_enqueue_scripts', 'cheer_dequeue_fonts' ); //WordPress.com specific styles function cheer_wpcom_styles() { wp_enqueue_style( 'cheer-wpcom', get_template_directory_uri() . '/inc/style-wpcom.css', '20130005' ); } add_action( 'wp_enqueue_scripts', 'cheer_wpcom_styles' );