Skip to content

Instantly share code, notes, and snippets.

@danielpowney
Created August 20, 2016 11:57
Show Gist options
  • Save danielpowney/96b493aec2794cb63501e2bebcdc9979 to your computer and use it in GitHub Desktop.
Save danielpowney/96b493aec2794cb63501e2bebcdc9979 to your computer and use it in GitHub Desktop.
<?php
/**
* Add IcoMoon generated fonts to the available font icon libraries in Multi Rating Pro
*
* @param unknown $icon_font_library_options
* @return unknown
*/
function my_add_icomoon_font_library_option( $icon_font_library_options ) {
$icon_font_library_options['icomoon-faces'] = __( 'IcoMoon Faces', 'multi-rating-pro' );
return $icon_font_library_options;
}
add_filter( 'mrp_icon_font_library_options', 'my_add_icomoon_font_library_option', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment