Created
August 13, 2020 21:40
-
-
Save luizlopescom/cd4a8af2821cab8bcd34c51425a19f0a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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