Are you looking for a way to keep Disqus from adding JS to your site, except on single posts or pages? This snippet will make sure Disqus only adds JS to single posts or single pages where comments are open.
Instructions:
All you have to do is add this code to your theme’s functions.php file or in a site-specific plugin:
add_action( 'wp_head', 'tgm_tame_disqus_comments' ); function tgm_tame_disqus_comments() { if ( is_singular( array( 'post', 'page' ) ) && comments_open() ) return; remove_action( 'loop_end', 'dsq_loop_end' ); remove_action( 'wp_footer', 'dsq_output_footer_comment_js' ); }
Note: If this is your first time adding code snippets in WordPress, then please refer to our guide on how to properly copy / paste code snippets in WordPress, so you don’t accidentally break your site.
If you liked this code snippet, please consider checking out our other articles on the site like: 15 Best Content Marketing Tools and Plugins for WordPress.
Comments Leave a Reply