Thread Starter
raikol
(@raikol)
This is what I added:
function my_taxonomy_types($taxonomies) {
// where ‘my_taxonomy_type’ is the name of your custom taxonomy
$taxonomies[] = ‘wpbdp_category’;
return $taxonomies;
}
add_filter(‘s2_taxonomies’, ‘my_taxonomy_types’);
As I said, the categories show up in subscribe2 “Your subscriptions” menu. Is there anything else I need to add?