From 330948ced34f9bfd884cf3959507b6c039eaf17d Mon Sep 17 00:00:00 2001 From: Lance Willett Date: Fri, 15 Nov 2013 19:03:10 +0000 Subject: [PATCH] Twenty Fourteen: remove a font weight of `900 italic` which isn't needed. Props iamtakashi. See #25946. Built from https://develop.svn.wordpress.org/trunk@26218 git-svn-id: http://core.svn.wordpress.org/trunk@26126 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyfourteen/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-content/themes/twentyfourteen/functions.php b/wp-content/themes/twentyfourteen/functions.php index 48f701a7c7..e8fccddaa9 100644 --- a/wp-content/themes/twentyfourteen/functions.php +++ b/wp-content/themes/twentyfourteen/functions.php @@ -204,7 +204,7 @@ function twentyfourteen_font_url() { * by Lato, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Lato font: on or off', 'twentyfourteen' ) ) - $font_url = add_query_arg( 'family', urlencode( 'Lato:300,400,700,900,300italic,400italic,700italic,900italic' ), "//fonts.googleapis.com/css" ); + $font_url = add_query_arg( 'family', urlencode( 'Lato:300,400,700,900,300italic,400italic,700italic' ), "//fonts.googleapis.com/css" ); return $font_url; }