Created
August 18, 2020 14:56
-
-
Save cryptexvinci/b91508903219df25755bbfe88277c273 to your computer and use it in GitHub Desktop.
Remove Ultimate Member um_old_css
This file contains hidden or 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
<?php | |
add_action( 'wp_enqueue_scripts', 'um_remove_old_css', UM()->enqueue()->get_priority() + 1 ); | |
if ( ! function_exists( 'um_remove_old_css' ) ) { | |
function um_remove_old_css() { | |
wp_dequeue_style( 'um_default_css' ); | |
wp_dequeue_style( 'um_old_css' ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment