Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2. //* Do NOT include the opening php tag
  3.  
  4. //* Remove Disqus from single event pages and single venue pages in Event Espresso 4
  5. add_filter( 'comments_template' , 'ee_remove_disqus', 1 );
  6. function ee_remove_disqus($file) {
  7. if ( in_array(get_post_type(), array('espresso_events', 'espresso_venues')) )
  8. remove_filter('comments_template', 'dsq_comments_template');
  9. return $file;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement