Disable AddToAny sharing in specific categories
-
Hello, I’m trying to disable AddToAny sharing in category “Users” on my site. I’m adding code:
function addtoany_disable_sharing_in_some_categories() { if ( in_category( array( 'users' ) ) ) { return true; } } add_filter( 'addtoany_sharing_disabled', 'addtoany_disable_sharing_in_some_categories' );
What am I doing wrong?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Disable AddToAny sharing in specific categories’ is closed to new replies.