forked from lukecav/code-snippets-wp-speed-up
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisable-jetpack-css-from-loading.code-snippets.json
1 lines (1 loc) · 2.05 KB
/
disable-jetpack-css-from-loading.code-snippets.json
1
{"generator":"Code Snippets v2.13.3","date_created":"2019-05-15 20:25","snippets":[{"name":"Disable Jetpack CSS from Loading","desc":"https:\/\/www.sertmedia.com\/how-to-stop-loading-jetpacks-css-file\/","tags":["disable","dequeue","jetpack","css","loading"],"scope":"global","code":"add_filter( 'jetpack_implode_frontend_css', '__return_false', 99 ); \nfunction wp_remove_all_jp_css() {\nwp_deregister_style( 'AtD_style' ); \/\/ After the Deadline\nwp_deregister_style( 'jetpack_likes' ); \/\/ Likes\nwp_deregister_style( 'jetpack_related-posts' ); \/\/Related Posts\nwp_deregister_style( 'jetpack-carousel' ); \/\/ Carousel\nwp_deregister_style( 'grunion.css' ); \/\/ Grunion contact form\nwp_deregister_style( 'the-neverending-homepage' ); \/\/ Infinite Scroll\nwp_deregister_style( 'infinity-twentyten' ); \/\/ Infinite Scroll - Twentyten Theme\nwp_deregister_style( 'infinity-twentyeleven' ); \/\/ Infinite Scroll - Twentyeleven Theme\nwp_deregister_style( 'infinity-twentytwelve' ); \/\/ Infinite Scroll - Twentytwelve Theme\nwp_deregister_style( 'noticons' ); \/\/ Notes\nwp_deregister_style( 'post-by-email' ); \/\/ Post by Email\nwp_deregister_style( 'publicize' ); \/\/ Publicize\nwp_deregister_style( 'sharedaddy' ); \/\/ Sharedaddy\nwp_deregister_style( 'sharing' ); \/\/ Sharedaddy Sharing\nwp_deregister_style( 'stats_reports_css' ); \/\/ Stats\nwp_deregister_style( 'jetpack-widgets' ); \/\/ Widgets\nwp_deregister_style( 'jetpack-slideshow' ); \/\/ Slideshows\nwp_deregister_style( 'presentations' ); \/\/ Presentation shortcode\nwp_deregister_style( 'jetpack-subscriptions' ); \/\/ Subscriptions\nwp_deregister_style( 'tiled-gallery' ); \/\/ Tiled Galleries\nwp_deregister_style( 'widget-conditions' ); \/\/ Widget Visibility\nwp_deregister_style( 'jetpack_display_posts_widget' ); \/\/ Display Posts Widget\nwp_deregister_style( 'gravatar-profile-widget' ); \/\/ Gravatar Widget\nwp_deregister_style( 'widget-grid-and-list' ); \/\/ Top Posts widget\nwp_deregister_style( 'jetpack-widgets' ); \/\/ Widgets\n}\nadd_action('wp_print_styles', 'wp_remove_all_jp_css' )","priority":"10"}]}