As you hinted in your question, you could use get_term_by()
to return an object or array containing the term’s id, then use it to update that term. Something like this should work:
$your_term = get_term_by( 'slug', 'your_slug', 'your_taxonomy' );
if ( false !== $your_term ) {
wp_update_term( $your_term->term_id, 'your_taxonomy', $args );
}
References:
http://codex.wordpress.org/Function_Reference/get_term_by
http://codex.wordpress.org/Function_Reference/wp_update_term
Related Posts:
- Exclude specific slug in ‘get_terms’
- Display Taxonomy Terms in an option tag with value being the slug
- generate random slug when adding taxonomy
- Display taxonomy term slugs
- Is there a way to disable a term rather than deleting it?
- Modify Term Update Redirection
- Return only the custom sub-term for custom post type, do not echo term-parent
- Check if current term is a child of another term
- get_terms() doesn’t return empty terms even though hide_empty is false
- Formating the_terms() function output
- Custom Taxonomy Only Showing Top Level Terms in Admin?
- Get current term’s ID
- Is it possible to get a Previous/Next Taxonomy term archive URL?
- Looping Through Custom Tax Terms and Displaying All Posts For Each
- How to get the top most term (top ancestor) of a custom taxonomy child term?
- How to set hierarchical terms to a post using wp_set_object_terms
- Echo taxonomy term meta on author.php
- Hierarchical display of custom taxonomy
- How to edit/remove a term that’s in multiple taxonomies?
- How to display term description in empty terms archive?
- Checking if a Page has an Associated Term?
- What are terms and taxonomy, how they related to post and how these three are stored in database?
- How to create drop down for child categories of current taxonomy being viewed?
- Get terms ordered by post date
- Allow only 1 instance of each term in each custom taxonomy
- Why does WP rename similar “term name”-slugs in separate taxonomies?
- get_the_terms() to show all custom taxonomies
- How can I get WP to build a feed based on multiple taxonomy terms
- get_terms: determine if taxonomy term has children
- display taxonomy slug from term ID
- get_term_children doesn’t return an array of children terms
- Get Current Custom Taxonomy ID by Post ID
- Changing stylesheet depending on custom taxonomy terms
- Taxonomy archive showing no results
- Use get_the_terms to list subcategories of custom taxonomy
- Get custom category image from menu
- get_term and get_term_by return null or false, even though term exists
- Sort order by slug for looped child terms of custom taxonomy
- Replace taxonomy permalinks
- Displaying Custom Taxonomy without a hyperlink
- Echo custom taxonomy slug
- Get only immediate children (and not grandchildren) of a hierarchical custom taxonomy term
- Set term on an attachment using wp_set_object_terms and want to display the full term text but it’s showing a slug instead
- How to group all terms children’s in custom taxonomy?
- Show template part if part of term
- one post per term taxonomy
- How can I change the output display of my pagination?
- Corrupted nav-menu?
- Get name of taxonomies of current page
- List Top 5 taxonomy terms based on number of post
- Order taxonomy terms wordpress
- Unable to get the Parent Custom Taxonomy Terms
- How to get the term description in a taxonomy term archive query?
- Unsetting post_tag taxonomy breaks term description for other taxonomies
- Use wp_list_categories to list parent categories from actual term
- Include get_term_link inside search
- Trash Bin for Categories?
- Set two terms for a post when they differ only by an accent
- How to add a shortcode function that returns the taxonomy slug of the actual post within the loop
- Retrieve the child terms by having the parent’s information
- add pagination in wordpress page template
- Listing Cities A custom taxonmy by selection order
- Cloning product not copying custom taxonomies
- How to create a non removable taxonomy term?
- Filter “get_terms” query
- Get Highest and Lowest get_term_meta() value from Taxonomy Term
- How to get a terms and posts associated with another term?
- Displaying subcategories and then posts in taxonomy template
- Why get_terms() behaves strangely when being called in admin (for use in meta box)?
- set_object_terms for custom taxonomy in custom post type – not working
- qtranslate-x problem with custom term description
- Resize $term attachment using url
- switch statement for taxonomy content
- Change order custom taxonomy
- Taxonomy term breadcrumb; how?
- Exclude 2 in 3 terms of A Taxonomy from all Archives
- get_terms() – unexpected ‘=>’ (T_DOUBLE_ARROW) error
- Display woocommerce product_cat child terms with thumbnails
- How to delete unused terms?
- How do I check if a post has a term with a particular ancestor/parent?
- Taxonomy Archive URL + Template
- Can I lock down custom taxonomies on a parent term level, but not a child term?
- Adding session variable and/or cookie based on user-selected input
- Check if term is in a taxonomy?
- How to show only terms by id or slug on edit-tags.php (custom taxonomy manage page) for a custom taxonomy
- problem in taxonomy-{taxonomy}.php pagination
- Query posts from a child taxonomy term id
- get_terms() duplicate first term of a custom taxonomy
- Adding Child Terms Programatically – No Warning but No dice either
- How can I get Taxonomy Images to work with ‘orderby’ argument?
- Set post terms by term id
- using wp_insert_term to create custom terms for a custom taxonomy from frontend form,
- Get Terms of custom Taxonomy of products with certain Product Category
- Custom dropdown list taxonomy not saved
- WordPress taxonomy terms archive template help
- Custom taxonomy shows full articles
- WordPress add taxonomies/terms list as a menu in archive page
- Register custom taxonomy from a Advenced custom field option page
- Multiple category lists on one page
- Add custom display condition to Elementor Theme Builder for custom taxonomy children, grandchildren, and great-grandchildren