Advertisement
jan_dembowski

selectively-disable-disqus.php

Apr 14th, 2012
349
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4. Plugin Name: Selectively Disable Disqus
  5. */
  6.  
  7. add_filter( 'the_content' , 'mh_disable_disqus' );
  8. function mh_disable_disqus( $content ) {
  9.         $id = get_the_ID();
  10.         if( $id == 123 ) {
  11.                 remove_filter('comments_template', 'dsq_comments_template');
  12.         }
  13.         return $content;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement