Created
April 12, 2022 14:23
-
-
Save developer-anuragsingh/3c91dd04f3a5dba9dc41ba9166f2b494 to your computer and use it in GitHub Desktop.
Remove plugin's stylesheet from WordPress front-end
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
function dequeue_plugin_style(){ | |
wp_dequeue_style( 'page-list-style' ); //Stylesheet handler name | |
} | |
add_action( 'wp_enqueue_scripts', 'dequeue_plugin_style', 999 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment