Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ScottTravisHartley/ea76e233fac026a2d45ff1819b3391fa to your computer and use it in GitHub Desktop.

Select an option

Save ScottTravisHartley/ea76e233fac026a2d45ff1819b3391fa to your computer and use it in GitHub Desktop.
Load Social Warfare CSS / JS Only On Posts
function sertmedia_remove_social_warfare_junk() {
if (! is_singular('post') ) {
wp_dequeue_style('social-warfare-block-css');
wp_dequeue_style('social_warfare');
wp_dequeue_script('social_warfare_script');
add_filter( 'swp_header_html', '__return_false', PHP_INT_MAX );
}
}
add_action( 'wp_enqueue_scripts', 'sertmedia_remove_social_warfare_junk' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment