addthis_post_exclude filter no longer works in 5.0.12
-
Since updating the following code no longer removes share buttons on a custom post type:
/** * Remove AddThis on Expertise pages */ add_filter('addthis_post_exclude', 'addthisPostExcludeFilter'); function addthisPostExcludeFilter($display) { if ('expertise' == get_post_type()) { $display = false; } return $display; }
I have had to downgrade to 5.0 to get this to work. I assume this was not done on purpose as I can’t find any comments on it.
Any help would be appreciated.
Cheers.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘addthis_post_exclude filter no longer works in 5.0.12’ is closed to new replies.