1. Home
  2. Docs
  3. Subscribe2
  4. Hooks, API & Customization
  5. s2_post_types

s2_post_types

this hook allows the registration of Custom Post Types in Subscribe2 so that notifications can be sent for new posts created in such a custom post type. This hook may need to be used with the ‘s2_taxonomies’ hook details next.

function my_post_types($types) {
    $types[] = 'my_post_type';
    return $types;
}
add_filter('s2_post_types', 'my_post_types');
Was this article helpful to you? Yes No

How can we help?