Skip to content

Instantly share code, notes, and snippets.

@developer-anuragsingh
Created April 12, 2022 14:23
Show Gist options
  • Save developer-anuragsingh/3c91dd04f3a5dba9dc41ba9166f2b494 to your computer and use it in GitHub Desktop.
Save developer-anuragsingh/3c91dd04f3a5dba9dc41ba9166f2b494 to your computer and use it in GitHub Desktop.
Remove plugin's stylesheet from WordPress front-end
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