Created
February 21, 2017 13:58
-
-
Save bigdigital/55a5c3003e558d841c20f74b3d225eee to your computer and use it in GitHub Desktop.
Add custom font in The7 theme
This file contains hidden or 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
function add_custom_font( $fonts ) { | |
$fonts['Fibon'] = 'Fibon'; | |
return $fonts; | |
} | |
add_filter( 'presscore_options_get_safe_fonts', 'add_custom_font' ,30 , 1 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment