Request support for appending taxonomies
-
Hello, great plugin!
Currently when USP calls wp_update_post, I have other code that triggers off the save_post hook and adds taxonomies based on the post content. When control returns to USP, it replaces those taxonomies with the user submitted taxonomies when I want them to append instead. So I changed
wp_set_post_tags($post_id, $tags); wp_set_post_categories($post_id, $category);
to
wp_set_post_tags($post_id, $tags, true ); wp_set_post_categories($post_id, $category, true );
but it would be great if those 3rd function parameters (to append) was an option or at least put through a filter. Thanks for considering!
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Request support for appending taxonomies’ is closed to new replies.