Changeset 28693
- Timestamp:
- 06/06/2014 06:21:42 PM (11 years ago)
- Location:
- trunk/src/wp-content/themes/twentythirteen
- Files:
-
- 12 added
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentythirteen/functions.php
r28250 r28693 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. … … 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. -
trunk/src/wp-content/themes/twentythirteen/inc/custom-header.php
r27598 r28693 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' );
Note: See TracChangeset
for help on using the changeset viewer.