Skip to content

Instantly share code, notes, and snippets.

@kamalinfo
Last active January 14, 2018 06:01
Show Gist options
  • Save kamalinfo/ed56b16996418c657cce00bac073471a to your computer and use it in GitHub Desktop.
Save kamalinfo/ed56b16996418c657cce00bac073471a to your computer and use it in GitHub Desktop.
<?php
//functions php
add_action('init', 'themename_custom_icon_set');
function themename_custom_icon_set() {
if( function_exists( 'kc_add_icon' ) ) {
kc_add_icon( get_template_directory_uri().'/css/material-design-iconic-font.min.css' );
kc_add_icon( get_template_directory_uri().'/css/flaticon.css' );
}
}
//font css
[class^="zmdi-"], [class*=" zmdi-"] {
font-family: 'Material-Design-Iconic-Font' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment