Created
August 20, 2016 11:57
-
-
Save danielpowney/96b493aec2794cb63501e2bebcdc9979 to your computer and use it in GitHub Desktop.
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 | |
/** | |
* 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