Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- //Exclude AddThis widgets from anything other than posts
- add_filter('addthis_post_exclude', 'addthis_post_exclude', 20, 2);
- function addthis_post_exclude($display)
- {
- if (tribe_is_community_my_events_page() || tribe_is_community_edit_event_page())
- $display = false;
- return $display;
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment