Make WordPress Core

Ticket #25946: 25946.3.diff

File 25946.3.diff, 747 bytes (added by iamtakashi, 12 years ago)

Remove a font weight 900 italic which is not necessary in the theme as it is.

  • wp-content/themes/twentyfourteen/functions.php

     
    204204         * by Lato, translate this to 'off'. Do not translate into your own language.
    205205         */
    206206        if ( 'off' !== _x( 'on', 'Lato font: on or off', 'twentyfourteen' ) )
    207                 $font_url = add_query_arg( 'family', urlencode( 'Lato:300,400,700,900,300italic,400italic,700italic,900italic' ), "//fonts.googleapis.com/css" );
     207                $font_url = add_query_arg( 'family', urlencode( 'Lato:300,400,700,900,300italic,400italic,700italic' ), "//fonts.googleapis.com/css" );
    208208
    209209        return $font_url;
    210210}