Make WordPress Core

Ticket #25391: 25391.3.diff

File 25391.3.diff, 1.9 KB (added by lancewillett, 11 years ago)
  • wp-content/themes/twentythirteen/functions.php

     
    7272         * This theme styles the visual editor to resemble the theme style,
    7373         * specifically font, colors, icons, and column width.
    7474         */
    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() ) );
    7676
    7777        // Adds RSS feed links to <head> for posts and comments.
    7878        add_theme_support( 'automatic-feed-links' );
     
    176176        wp_enqueue_style( 'twentythirteen-fonts', twentythirteen_fonts_url(), array(), null );
    177177
    178178        // 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' );
    180180
    181181        // Loads our main stylesheet.
    182182        wp_enqueue_style( 'twentythirteen-style', get_stylesheet_uri(), array(), '2013-07-18' );
  • wp-content/themes/twentythirteen/inc/custom-header.php

     
    7272        wp_enqueue_style( 'twentythirteen-fonts', twentythirteen_fonts_url(), array(), null );
    7373
    7474        // 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' );
    7676}
    7777add_action( 'admin_print_styles-appearance_page_custom-header', 'twentythirteen_custom_header_fonts' );
    7878