Skip to content

Instantly share code, notes, and snippets.

@wp-user-manager
Created October 21, 2022 20:26
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 wp-user-manager/6845ac78fd46db0d2ff8e30949d7f1dc to your computer and use it in GitHub Desktop.
Save wp-user-manager/6845ac78fd46db0d2ff8e30949d7f1dc to your computer and use it in GitHub Desktop.
WP User Manager - Don't load the frontend CSS
<?php
function wpum_unload_styles() {
wp_dequeue_style( 'wpum-frontend' );
}
add_action( 'wp_enqueue_scripts', 'wpum_unload_styles', 11 );
@wp-user-manager
Copy link
Author

Save this file to your /wp-content/mu-plugins/ directory (you might need to create the mu-plugins directory).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment