Skip to content

Instantly share code, notes, and snippets.

@shivapoudel
Last active February 24, 2023 05:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shivapoudel/e06d3a1eb762fbf9ad6202c9a9738844 to your computer and use it in GitHub Desktop.
Save shivapoudel/e06d3a1eb762fbf9ad6202c9a9738844 to your computer and use it in GitHub Desktop.
WordPress - Enable Dashicons in Frontend
<?php // Do not include this if already open!
/**
* Code goes in theme functions.php.
*/
add_action( 'wp_enqueue_scripts', 'load_dashicons_front_end' );
/**
* Enqueue the Dashicons script.
*/
function load_dashicons_front_end() {
wp_enqueue_style( 'dashicons' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment