Stop jetpack subscription notifications for category
-
I have added the following to my functions.php… however, those who have previously subscribed via email notifications are still getting notifications when I post to this category.
function jetpackme_exclude_posts_subscriptions( $categories ) {
$categories = array( 'log' );
return $categories;
}
add_filter( 'jetpack_subscriptions_exclude_these_categories', 'jetpackme_exclude_posts_subscriptions' );
How can I prevent jetpack from sending notifications when an entry in this category is posted?
The blog I need help with is: (visible only to logged in users)
-
Hi there,
We can only help with sites hosted on WordPress.com in this forum.
For help with the Jetpack plugin, you can contact their support here:
-
filled it here, then: https://github.com/Automattic/jetpack/issues
as the link you suggests only allows you to search the knowledge base or post to these forums.
- The topic ‘Stop jetpack subscription notifications for category’ is closed to new replies.