Skip to content

Instantly share code, notes, and snippets.

@misfist
Last active January 24, 2018 20:15
Show Gist options
  • Save misfist/f75a6dda7405d0aec13b173b71707b97 to your computer and use it in GitHub Desktop.
Save misfist/f75a6dda7405d0aec13b173b71707b97 to your computer and use it in GitHub Desktop.
WordPress - Disable JetPack CSS
<?php
function prefix_remove_jetpack_styles() {
wp_deregister_style( 'jetpack-carousel' ); // Carousel
wp_deregister_style( 'the-neverending-homepage' ); // Infinite Scroll
wp_deregister_style( 'post-by-email' ); // Post by Email
wp_deregister_style( 'publicize' ); // Publicize
wp_deregister_style( 'sharedaddy' ); // Sharedaddy
wp_deregister_style( 'sharing' ); // Sharedaddy Sharing
wp_deregister_style( 'stats_reports_css' ); // Stats
wp_deregister_style( 'jetpack-widgets' ); // Widgets
}
add_action( 'wp_print_styles', 'prefix_remove_jetpack_styles' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment