Browse Source

Merge pull request #1940 from Automattic/fix/hever-font-family

Fix incorrect font name
Allan Cole 5 years ago
parent
commit
0df12c6e64
1 changed files with 1 additions and 1 deletions
  1. 1 1
      hever/functions.php

+ 1 - 1
hever/functions.php

@@ -136,7 +136,7 @@ function hever_fonts_url() {
 	if ( 'off' !== $ptsans ) {
 		$font_families = array();
 
-		$font_families[] = 'PT+Sans:400,400i,700,700i';
+		$font_families[] = 'PT Sans:400,400i,700,700i';
 
 		$query_args = array(
 			'family' => urlencode( implode( '|', $font_families ) ),