D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
sadaunjx
/
darpress.com
/
new
/
wp-content
/
themes
/
vinkmag
/
core
/
hooks
/
Filename :
custom-fonts.php
back
Copy
<?php if (!defined('ABSPATH')) die('Direct access forbidden.'); /** * hooks for adding custom fonts */ function vinkmag_filter_custom_fonts( $fonts ) { $gilroy = array( 'family' => 'gilroylight' ); $gilroyextrabold = array( 'family' => 'gilroyextrabold' ); array_push( $fonts, 'gilroylight', 'gilroyextrabold' ); return $fonts; } add_filter( 'fw_option_type_typography_v2_standard_fonts', 'vinkmag_filter_custom_fonts' );