Title: Category specific subscribe
Last modified: April 16, 2023

---

# Category specific subscribe

 *  Resolved [wpac](https://wordpress.org/support/users/wpac/)
 * (@wpac)
 * [3 years ago](https://wordpress.org/support/topic/category-specific-subscribe/)
 * Hi, Is it possible for the subscribe block to limit subscriptions to a specific
   post category?

Viewing 1 replies (of 1 total)

 *  [Daniel](https://wordpress.org/support/users/ihenetudan/)
 * (@ihenetudan)
 * [3 years ago](https://wordpress.org/support/topic/category-specific-subscribe/#post-16671798)
 * Hi [@wpac](https://wordpress.org/support/users/wpac/),
 * Yes, it is possible to limit subscriptions to a specific post category. You can
   use the `jetpack_subscriptions_exclude_all_categories_except` filter to achieve
   this. Here’s an example code snippet that only sends subscription emails for 
   posts belonging to the “VaultPress” or “Akismet” categories:
 *     ```wp-block-code
       function jetpackme_exclude_all_posts_subscriptions_except( $categories ) {
           $categories = array( 'vaultpress', 'akismet');
           return $categories;
       }
       add_filter( 'jetpack_subscriptions_exclude_all_categories_except', 'jetpackme_exclude_all_posts_subscriptions_except' );
       ```
   
 * Replace ‘vaultpress’ and ‘akismet’ with the desired category slugs.
 * You might find the other filters on this page useful: [https://jetpack.com/blog/hook-month-control-subscriptions/](https://jetpack.com/blog/hook-month-control-subscriptions/)

Viewing 1 replies (of 1 total)

The topic ‘Category specific subscribe’ is closed to new replies.

 * ![](https://ps.w.org/jetpack/assets/icon.svg?rev=2819237)
 * [Jetpack - WP Security, Backup, Speed, & Growth](https://wordpress.org/plugins/jetpack/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/jetpack/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/jetpack/)
 * [Active Topics](https://wordpress.org/support/plugin/jetpack/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/jetpack/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/jetpack/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Daniel](https://wordpress.org/support/users/ihenetudan/)
 * Last activity: [3 years ago](https://wordpress.org/support/topic/category-specific-subscribe/#post-16671798)
 * Status: resolved