Guest User

Exclude Addthis on Community pages of The Event Calendar

a guest
Jul 23rd, 2012
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php
  2. //Exclude AddThis widgets from anything other than posts
  3. add_filter('addthis_post_exclude', 'addthis_post_exclude', 20, 2);
  4. function addthis_post_exclude($display)
  5. {
  6.   if (tribe_is_community_my_events_page() || tribe_is_community_edit_event_page())
  7.     $display = false;
  8.     return $display;
  9. }
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment