onetone_options_typography_get_os_fonts
Returns an array of system fonts.
Description
onetone_options_typography_get_os_fonts();
Usage
if ( !function_exists( 'onetone_options_typography_get_os_fonts' ) ) { require_once '/includes/theme-functions.php'; } // NOTICE! Understand what this does before running. $result = onetone_options_typography_get_os_fonts();
Defined (1)
The function is defined in the following location(s).
- /includes/theme-functions.php
- function onetone_options_typography_get_os_fonts() {
- // OS Font Defaults
- $os_faces = array(
- 'Arial, sans-serif' => 'Arial',
- // '"Avant Garde", sans-serif' => 'Avant Garde',
- 'Cambria, Georgia, serif' => 'Cambria',
- 'Calibri, sans-serif' => 'Calibri' ,
- 'Copse, sans-serif' => 'Copse',
- 'Garamond, "Hoefler Text", Times New Roman, Times, serif' => 'Garamond',
- 'Georgia, serif' => 'Georgia',
- '"Helvetica Neue", Helvetica, sans-serif' => 'Helvetica Neue',
- 'Tahoma, Geneva, sans-serif' => 'Tahoma',
- 'Lustria, serif' => 'Lustria'
- );
- return $os_faces;
- }