Skip to content

Instantly share code, notes, and snippets.

@MjHead
Last active August 29, 2015 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MjHead/47bbf89948026d514411 to your computer and use it in GitHub Desktop.
Save MjHead/47bbf89948026d514411 to your computer and use it in GitHub Desktop.
Add font to iconpicker
<?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