Skip to content

Instantly share code, notes, and snippets.

@cinghaman
Last active July 13, 2018 16:18
Show Gist options
  • Save cinghaman/f164487cd41d0f5840c2ba2b4c8684c3 to your computer and use it in GitHub Desktop.
Save cinghaman/f164487cd41d0f5840c2ba2b4c8684c3 to your computer and use it in GitHub Desktop.
Remove dashicons script for non logged in users - WordPress
// Add it in the end of your functions.php file in the child theme
// Remove dashicons in frontend for unauthenticated users
add_action( 'wp_enqueue_scripts', 'rs_dequeue_dashicons' );
function rs_dequeue_dashicons() {
if ( ! is_user_logged_in() ) {
wp_deregister_style( 'dashicons' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment