Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save barbareshet/0c9d77a8f13c6819ad076e5686709648 to your computer and use it in GitHub Desktop.

Select an option

Save barbareshet/0c9d77a8f13c6819ad076e5686709648 to your computer and use it in GitHub Desktop.
//load font awesome if not loaded with the theme files
function check_font_awesome() {
global $wp_styles;
$srcs = array_map('basename', (array) wp_list_pluck($wp_styles->registered, 'src') );
if ( in_array('font-awesome.css', $srcs) || in_array('font-awesome.min.css', $srcs) ) {
/* echo 'font-awesome.css registered'; */
} else {
wp_enqueue_style( 'local-business-schema-fonts', PLUGIN_FOLDER . '/assets/fonts/font-awesome/css/font-awesome.min.css', array(), '', 'screen' );
}
}
add_action('wp_enqueue_scripts', 'check_font_awesome', 99999);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment