Skip to content

Instantly share code, notes, and snippets.

@lukecav
Created April 21, 2017 15:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save lukecav/cbb3e000a05bd22af746c8b037adadad to your computer and use it in GitHub Desktop.
Save lukecav/cbb3e000a05bd22af746c8b037adadad to your computer and use it in GitHub Desktop.
Remove dashicons from the front-end for non-admins
// remove dashicons
function wpdocs_dequeue_dashicon() {
if (current_user_can( 'update_core' )) {
return;
}
wp_deregister_style('dashicons');
}
add_action( 'wp_enqueue_scripts', 'wpdocs_dequeue_dashicon' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment