Last active
July 13, 2020 11:57
-
-
Save premanshup/1f2cd7c4fd337b2664fbc181ac113137 to your computer and use it in GitHub Desktop.
New Google Fonts PHP file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Google fonts array file. | |
* | |
* @package Astra Child | |
* @author Astra | |
* @copyright Copyright (c) 2020, Astra | |
* @link https://wpastra.com/ | |
*/ | |
/** | |
* Returns google fonts array | |
*/ | |
return array( | |
array( | |
'ABeeZee' => array( | |
'variants' => array( 'regular', 'italic' ), | |
'category' => 'sans-serif', | |
), | |
), | |
array( | |
'Abel' => array( | |
'variants' => array( 'regular' ), | |
'category' => 'sans-serif', | |
), | |
), | |
array( | |
'Abhaya Libre' => array( | |
'variants' => array( 'regular', '500', '600', '700', '800' ), | |
'category' => 'serif', | |
), | |
), | |
array( | |
'Abril Fatface' => array( | |
'variants' => array( 'regular' ), | |
'category' => 'display', | |
), | |
), | |
array( | |
'Aclonica' => array( | |
'variants' => array( 'regular' ), | |
'category' => 'sans-serif', | |
), | |
), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment