Skip to content

Instantly share code, notes, and snippets.

@DavidWells
Forked from BFTrick/functions.php
Last active August 29, 2015 13:57
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 DavidWells/9491708 to your computer and use it in GitHub Desktop.
Save DavidWells/9491708 to your computer and use it in GitHub Desktop.
Disable inbound now shortcode styles. Add this snippet to your themes functions.php file
//dequeue css from plugins
add_action('wp_print_styles', 'inbound_dequeue_css', 100);
function inbound_dequeue_css() {
wp_dequeue_style( 'inbound-shortcodes' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment