Last active
August 29, 2015 14:25
-
-
Save MjHead/47bbf89948026d514411 to your computer and use it in GitHub Desktop.
Add font to iconpicker
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
<?php | |
// Note! Replace 'themeXXXX' with your theme prefix | |
add_filter( 'cherry_custom_font_icons', 'themeXXXX_custom_font_icons' ); | |
function themeXXXX_custom_font_icons($icons) { | |
$icons['themeXXXX_flat_icon'] = get_stylesheet_directory_uri() . '/assets/css/font-css-file.css'; | |
return $icons; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment