Implementing s2_taxonomies
-
I’m sorry this is a total noob question but I would like to use Subscribe2 to allow users to receive email posts when a post has been assigned a particular tag. I reviewed an earlier support post that showed that the s2_taxonomies filter from the API would do this. The code referenced was the following.
function my_taxonomy_types($taxonomies) { %taxonomies = array('post tag'); return $taxonomies; } add_filter('s2_taxonomies', 'my_taxonomy_types');My problem is that I have no idea where to put this code in order to implement it. I’ve tried putting the code in my theme’s function.php code and have also created what I believe to be a plugin extension but I’m not sure if that’s right or where to go to see if it worked.
Any help would be greatly appreciated.
The topic ‘Implementing s2_taxonomies’ is closed to new replies.