Using with Custom Post Type
-
I have a custom post type of “monthly bulletin” that I need to send to subscribers.
I’ve added the code below into my functions.php file, and tested it by publishing a new bulletin, but the email notification doesn’t come through.Any ideas on what I am missing?
function my_post_types($types) { $types[] = 'monthlybulletin'; return $types; } add_filter('s2_post_types', 'monthlybulletin');
I’ve tested the plugin with a standard post and that works fine.
Thanks in advance.
- The topic ‘Using with Custom Post Type’ is closed to new replies.