Last active
December 15, 2015 08:59
-
-
Save simplethemes/5234822 to your computer and use it in GitHub Desktop.
Child Theme functions for adding additional fonts to Theme Options
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
// Defines the font stacks displayed in Theme Options | |
function my_theme_fonts() { | |
$default = array( | |
'opensans' => 'Open Sans', | |
'helvetica' => 'Helvetica', | |
'arial' => 'Arial', | |
'tahoma' => 'Tahoma', | |
'georgia' => 'Georgia', | |
'cambria' => 'Cambria', | |
'palatino' => 'Palatino', | |
'droidsans' => 'Droid Sans', | |
'droidserif' => 'Droid Serif' | |
); | |
return $default; | |
} | |
add_filter( 'of_recognized_font_faces', 'my_theme_fonts' ); | |
// Defines the font stacks used in CSS | |
function my_font_stacks() { | |
$default = array( | |
'opensans' => '"Open Sans", sans-serif', | |
'helvetica' => '"HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif', | |
'arial' => 'Arial, Helvetica, sans-serif', | |
'georgia' => 'Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif', | |
'cambria' => 'Cambria, "Hoefler Text", Utopia, "Liberation Serif", "Nimbus Roman No9 L Regular", Times, "Times New Roman", serif', | |
'tahoma' => 'Tahoma, Verdana, Segoe, sans-serif', | |
'palatino' => '"Palatino Linotype", Palatino, Baskerville, Georgia, serif', | |
'droidsans' => '"Droid Sans", sans-serif', | |
'droidserif' => '"Droid Serif", serif', | |
); | |
return $default; | |
} | |
add_filter( 'st_font_faces', 'my_font_stacks' ); | |
// Load Google Fonts | |
// Add multiple fonts with the Pipe "|" character | |
// Example: family?family=Font+Name1:variants|Font+Name2:variants | |
function load_google_fonts() { | |
wp_register_style('googleFonts', 'http://fonts.googleapis.com/css?family=Open+Sans:400italic,100,400,700,300,800'); | |
wp_enqueue_style( 'googleFonts'); | |
} | |
add_action('wp_print_styles', 'load_google_fonts'); | |
// Adds additional settings to use specific font weights | |
function st_font_styles() { | |
$default = array( | |
'normal' => 'Normal', | |
'italic' => 'Italic', | |
'bold' => 'Bold', | |
'bold italic' => 'Bold Italic', | |
'100' => '100', | |
'200' => '200', | |
'300' => '300', | |
'400' => '400', | |
'500' => '500', | |
'600' => '600', | |
'700' => '700', | |
'800' => '800' | |
); | |
return $default; | |
} | |
add_filter( 'of_recognized_font_styles', 'st_font_styles' ); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment