What you’re looking for are the create_$taxonomy, edit_$taxonomy and delete_$taxonomy hooks. $taxonomy is, of course, your taxonomy name.
<?php
add_action( 'create_your_tax', 'wpse32510_create', 10, 2 );
funciton wpse32510_create( $term_id, $tt_id )
{
// do stuff
}
There’s also create_term, edit_term and delete_term.
Best place to find hooks: http://adambrown.info/p/wp_hooks/
Related Posts:
- Saving Taxonomy Terms
- Get Posts by Custom Post Type ,Taxonomy, and Term
- How do I append multiple taxonomies to the URL?
- How to limit the number of terms (terms acts like categories)
- Custom Post Type – Taxonomy Dropdown Menu?
- How can I list all the categories under a Custom Post Type (taxonomy)?
- Taxonomy term in permalink
- How to correctly get post type in a the_title filter
- flush_rewrite_rules on save_post Does Not Work on First Post Save
- Remove quick edit for custom post type
- Count posts that have specific taxonomy term attached
- Taxonomy archives based on Custom Post Type
- Filtering Posts by Multiple Taxonomy Terms such as in an Admin Post Listing?
- Get the ‘slug’ of a custom taxonomy
- Custom Metabox with Taxonomy Dropdown – Saving Issue
- Group list of posts by taxonomy and allow for pagination
- Priority for Categories, Tags, Taxonomies, Posts, Pages and Custom Posts with same url
- Adding a term name from a custom taxonomy assigned to a post link displayed by a wp_query loop based on another taxonomy
- create a back-end wordpress content submission using custom post type
- Include custom post type in “all posts”
- Displaying related posts in a custom post type by a custom taxonomy
- Get all taxonomies for all post types
- Is slug “type” reserved and can’t be used in taxonomy rewrite?
- Remove “Get Shortlink” button in admin of custom post type
- update_post_meta() whenever custom post type is updated
- How do I display custom post types through a common taxonomy?
- Paginate_links won’t create the right links on a taxonomy filtered custom post type archive
- How to list custom post types?
- Custom Post Types and Categories?
- Conditional regex in add_rewrite_rule() for specific query filters & pagination
- Query Multiple Taxominies Across Multiple Post type’s
- Tag page with Custom Post Types not returning any posts
- Taxonomy custom post type URL
- How to build custom route by adding taxonomies to URL ? ex: www.demo.com/communities/palo-alto/
- How do I display the taxonomy for a custom post type in an array
- How do I check if the user is on a taxonomy term parent, child or grandchild page?
- Suggested Post and Taxonomy structure
- How to get list of taxonomy slugs ordered parents>childs?
- Multiple tag cloud filtering
- Get url.com/post_type/taxonomy/term work!
- How to display products name in a non-alphabetical order, in a custom field (taxonomy)?
- Taxonomy in URL
- How to organise this data within WordPress
- How to Set Taxonomy Object Description?
- How to assign tag to custom post type in wordpress?
- Use remove_meta_box conditionally on custom post type
- Variable not working in WP_Query
- Associate all Custom Post Types with Taxonomy
- Alphabetically sort a taxonomy.php template by post title
- Show Taxonomies with admin area for custom post type?
- Use the custom post type archive for taxonomies?
- Taxonomy template page not working
- Types plugin custom post add_action hooks
- Copy/Move selected taxonomy terms to another taxonomy for posts
- Running a custom query inside another cpt single and trying to grab a variable
- Get posts by category name
- Loading plugin text domain before registering post type
- Query Custom Post Type by Taxonomy
- Copying over taxonomy structure from one CPT to another
- Sort Archive by Taxonomy
- Query all posts under one taxonomy? Why is my code not working?
- Display ONE taxonomy and its assigned pages
- How to recover the post ID earlier in the WP admin hook action “firing” sequence?
- CPT archive with WP native/core tax/categories
- Page that lists publications by classifying them by taxonomy
- Order posts by taxonomy terms
- How can i display a taxonomy? i have created a plugin and then a custom type. and a taxonomy , also i have register it
- Filtering posts based on three taxonomies
- Display category filters for custom post type when category is shared by multiple post types
- How to order taxonomy terms by most recent post?
- Post Click Redirect to Custom URL instead of Single Post Page
- editing shortcode for custom post type within a plugin
- Taxonomies are not showing in the category dropdown
- How to display all terms from all taxonomies in post, but separately for each taxonomy?
- Change custom post taxonomy values from front-end
- List all posts associated under custom taxonomy
- Pages of my taxonomy terms are showing all posts
- Custom post type category link + add to menu
- One of my headings is mysteriously coming up as a link in my CPT Archive
- Single taxonomy for different custom post types
- Reuse the “category” slug for a custom post type
- Keep br tags from stripping
- Taxonomy and Custom Post type with Collpase
- Best approach to allow front-end display of posts’ reviewers?
- Listing Custom Post Post from certain category
- Custom Post Type and Taxonomies, creating the corresponding template file and loop the data
- How to create TEMPLATES for TAXONOMIES? What I have to change in this code?
- Custom Post Type parent slug as menu item
- Displaying taxonomy icon outside archive page
- Archive templates based on taxonomies
- List a custom post type’s posts ordered by nested custom taxonomy
- Author template – separate custom post type by custom taxonomy term for $curauth
- Dynamically change post_parent in every page load?
- Single and Archive Pages with Custom Post Type
- Sharing a custom taxonomy – No posts?
- show only one category posts in admin
- How do I get parameters from the URL?
- Show only taxonomy types terms associated with a custom post type in WordPress PHP
- Taxonomy term archive claims there are no posts, but there are. How to resolve?
- How to list custom taxonomy terms without the hyperlinks?