Try hooking into the save_post action to check the custom terms when a post gets saved:
add_action( 'save_post', 'set_default_category' );
function set_default_category( $post_id ) {
// Get the terms
$terms = wp_get_post_terms( $post_id, 'your_custom_taxonomy');
// Only set default if no terms are set yet
if (!$terms) {
// Assign the default category
$default_term = get_term_by('slug', 'your_term_slug', 'your_custom_taxonomy');
$taxonomy = 'your_custom_taxonomy';
wp_set_post_terms( $post_id, $default_term, $taxonomy );
}
}
Related Posts:
- How to perform unit testing on proposed patches in Trac?
- Can the default “post tags” taxonomy be renamed?
- Remove the category/taxonomy description field?
- How to organize and cache additional data associated with terms?
- get a specific taxonomy term name
- get_terms() How many is TOO many?
- Child Terms not Displaying on the Taxonomy Term Admin Screen
- How to display child term of current term’s parent taxonomy?
- Sorting custom taxonomy causes menus error
- Set a cookie in WordPress, using a select form and Jquery
- Set default (auto) slug prefix for Tags
- How to add automatically keyword to taxonomies when a post published, and assign them to the post
- Display Custom Taxonomy in Sidebar in Two Columns
- Retrieve taxonomy terms in order of their post’s date?
- Custom taxonomy archive – No posts found [closed]
- Display parent taxonomy name and list child taxonomies below it?
- Conditional tag affecting taxonomy term and its children?
- Custom template for archive of a custom taxonomy
- Getting the parent from the wp_term_taxonomy
- Taxonomies, restrict editing and creation of terms?
- Variable in Array Not Working
- Add current class to queried term on taxonomy term archive
- How to list 2 taxonomy terms for a post, based on their hierarchy
- Displaying all terms of a custom taxonomy
- Showing custom taxonomy column in taxonomy category listings immediately after create category
- Order wordpress taxonomy parent terms by their children count
- Use get_terms to get post_tags but limit to a taxonomy
- Plugin to assign parent category on multiple taxonomy terms
- Pagination on taxonomy archive pages breaks
- how to show only last child terms of a taxonomy
- Check for taxonomy archive on search results page
- Use a CPT as a taxonomy
- How to list taxonomy terms in reverse order?
- how to display only the sub category names of the taxonmoy
- Adding tag’s featured image to tag archive
- Group Post by Custom Taxonomy 2 under Custom Taxonomy 1
- Ordering Taxonomies / Changing term_id
- How to restrict users in edit post that can just select exists tags? not add new
- Changing the default taxonomy key length
- Adding taxonomy terms based on custom field
- Multi Taxonomies same terms
- Make taxonomy terms appear in the order they were made
- Exclude posts with taxonomy term from appearing on home page query
- How to enforce the selection of at least one term from a custom taxonomy?
- Display a tag only if there is a description
- Query Custom Post Type by Taxonomy Meta Value
- Retrieve Taxonomy Label
- Foreach inside foreach
- Taxonomy – Exclude post format from showing on page
- Advice on how to build multiple cross-tagged content types
- Return Taxonomy Name for Each Term
- Taxonomy list names with lowercase
- Get term from multiple taxonomy
- Modify output of wp_dropdown_categories to add term IDs to each option
- Repeater + taxonomy: same value in every field
- line order number start numbering from second line (SOLVED)
- How to display only the direct children of a term on a taxonomy page
- Display posts from tagchildren of taxonomy tagparents
- If has_term, load other theme
- Terms from current post custom taxonomy — excluding parent and only from a single parent term
- archive page sidebar not working
- Bug using wp_insert_term with switch_to_blog
- how to list parent terms only
- Related Taxonomy Doesnt Show any Posts
- Get something out from taxonomy
- get_term_by with a variable
- Get ACF taxonomy term and sub-term lists ACF blocks
- Change searching from world level to first letter
- Finding id of taxonomy by name in custom post type
- How to have article URL like example.com/article1 and example.com/foo/article2?
- Unique IDs for Post Types and Taxonomies
- How to display acf repeater in tag archive page?
- Can’t display multiple terms with get_the_terms
- I want to edit the tags template by adding text that displays all tags from the listed posts
- Get Term ID by Description
- Can lots of tags affect performance?
- echo a tax term in loop
- I need posts within a taxonomy category that are tagged “featured” to show up first
- how to echo a custom taxonomy term from an array of term
- How to manage the links of a new taxonomy
- How to position taxonomy meta box on page
- WP REST API taxonomy is missing on custom post type
- Get taxonomy url, name, post count & image
- Rewrite permalink to include multiple taxonomies
- taxonomy terms are not populating select tag options
- Recent posts by taxonomy and filter by tag
- How to show amount of post in a taxonomy with advanced custom fields?
- Related Posts by taxonomy using Advance Custom Fields Plugin
- Organize content by month? SQL statement?
- Display Custom Column in CPT Taxonomy
- get term slug from current posts’s custom taxonomy
- Help me add Taxonomy to byline
- How Can I List Categories by Date?
- Custom Taxonomy Page redirect 404
- Passing values by form to create a query
- Why is taxonmy-[taxonomyname].php not working?
- Taxonomy link not working (leads to 404 page)
- How to display a term of taxonomy
- Hiding a tag from display
- taxonomy change to post/page type