Skip to content

Instantly share code, notes, and snippets.

@mehul0810
Created September 6, 2017 11:28
Show Gist options
  • Save mehul0810/bac24dbd4193b5a56282616751dc27d2 to your computer and use it in GitHub Desktop.
Save mehul0810/bac24dbd4193b5a56282616751dc27d2 to your computer and use it in GitHub Desktop.
Easily Enable Dashicons For WordPress FrontEnd https://www.mehulgohil.in/enable-dashicons-wordpress-frontend/
<?php
/**
* Enable Dashicons for WordPress FrontEnd.
*/
function mg_enable_dashicons_frontend() {
// Enable Dashicons Stylesheet.
wp_enqueue_style( 'dashicons' );
}
add_action( 'wp_enqueue_scripts', 'mg_enable_dashicons_frontend' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment