Ticket #25391: 25391.3.diff
File 25391.3.diff, 1.9 KB (added by , 11 years ago) |
---|
-
wp-content/themes/twentythirteen/functions.php
72 72 * This theme styles the visual editor to resemble the theme style, 73 73 * specifically font, colors, icons, and column width. 74 74 */ 75 add_editor_style( array( 'css/editor-style.css', ' fonts/genericons.css', twentythirteen_fonts_url() ) );75 add_editor_style( array( 'css/editor-style.css', 'genericons/genericons.css', twentythirteen_fonts_url() ) ); 76 76 77 77 // Adds RSS feed links to <head> for posts and comments. 78 78 add_theme_support( 'automatic-feed-links' ); … … 176 176 wp_enqueue_style( 'twentythirteen-fonts', twentythirteen_fonts_url(), array(), null ); 177 177 178 178 // Add Genericons font, used in the main stylesheet. 179 wp_enqueue_style( 'genericons', get_template_directory_uri() . '/ fonts/genericons.css', array(), '2.09' );179 wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.03' ); 180 180 181 181 // Loads our main stylesheet. 182 182 wp_enqueue_style( 'twentythirteen-style', get_stylesheet_uri(), array(), '2013-07-18' ); -
wp-content/themes/twentythirteen/inc/custom-header.php
72 72 wp_enqueue_style( 'twentythirteen-fonts', twentythirteen_fonts_url(), array(), null ); 73 73 74 74 // Add Genericons font. 75 wp_enqueue_style( 'genericons', get_template_directory_uri() . '/ fonts/genericons.css', array(), '2.09' );75 wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.03' ); 76 76 } 77 77 add_action( 'admin_print_styles-appearance_page_custom-header', 'twentythirteen_custom_header_fonts' ); 78 78