Skip to content

Instantly share code, notes, and snippets.

@luizlopescom
Created August 13, 2020 21:40
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 luizlopescom/cd4a8af2821cab8bcd34c51425a19f0a to your computer and use it in GitHub Desktop.
Save luizlopescom/cd4a8af2821cab8bcd34c51425a19f0a to your computer and use it in GitHub Desktop.
//Remove Dashicons for not logged in users
add_action( 'wp_print_styles', 'dashicons_dequeue_styles' );
function dashicons_dequeue_styles() {
if ( ! is_user_logged_in() ) {
wp_dequeue_style( 'dashicons' );
wp_deregister_style( 'dashicons' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment