Created
September 13, 2017 14:31
-
-
Save cobaltapps/72df23afbdb6690a03e6b01f65857e4c to your computer and use it in GitHub Desktop.
Use the following filter hook to set your own custom icons URL to override the default Freelancer Icons and add your own.
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
/* | |
* Edit the add_filter code below to add | |
* your own custom icon set in place of Freelancer's. | |
* | |
* NOTE: Do not define the FREELANCER_ICONS_DISABLE | |
* constant if you want to use the filter code below. | |
*/ | |
add_filter( 'freelancer_icons_url', function() { return get_stylesheet_directory_uri() . '/icons/css/custom-icons.min.css'; } ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment