Maybe you just need to add:
'order' => 'DESC', //or ASC
depending on which order you want them to be.
The title of your question sounds like you are trying to order taxonomy terms by their creation date which is not possible, but you can work around it by using the ID.
For example:
$terms = get_terms( 'YOUR_TAX_TERM', $args );
Since taxonomy term IDs are created incrementally if you sort by ID you are sorting them in the order that they were created:
$args = array(
'orderby' => 'ID',
'order' => 'DESC',
);
While not technically ordering by the date, this will accomplish essentially the same thing.
Related Posts:
- How can I select a primary category?
- How to organize custom categories for filtering and selecting
- How to add a post with new Taxonomy without assigning to default category?
- How to create default categories in new installs?
- Gutenberg editor add a custom category as wrapper for custom blocks
- Can’t custom taxonomies have same terms (slugs) as categories?
- get_categories for custom post type with a specific custom taxonomy attached
- How can I hide a category from Contributors in the edit/add new post screen?
- Order get_terms() By Custom Field
- WordPress Multiple Category Search
- How to remove categories filter from wordpress admin?
- How can I add the featured image functionality to a custom taxonomy?
- Combine two taxonomies in a hierarchical tree
- Decreasing the Memory Consumption of a WordPress Site?
- Multiple Domain Names – One WP Install (non-Multisite) – Default Each Domain name to Category Archive
- Use tag interface for hierarchical taxonomy?
- how to use a different domain/subdomain for authors/catagories on single site?
- Deleting default category in wordpress
- Delete a specific category when deleting a user
- Using URL parameters, list posts from category and custom taxonomy
- How to make custom taxonomy check boxes like ‘Categories’
- Different templates for parent and children categories/taxonomies
- How to list child categories in custom category template?
- Trash bin for categories
- cat_is_ancestor_of() for custom taxonomies
- Are Categories, Tags and Custom Taxonomies any different in regards to SEO?
- How to create non-unique sub-category slugs?
- Show Post from parent category (custom taxonomy) ONLY!
- How to set up sub-categories for author pages?
- View category in the preview of Theme Customizer
- How to convert regular categories to custom taxonomy?
- How to get next previous category in same taxonomy?
- One WordPress Install, Two Categories. Each Category Gets a Domain
- Block multiple categories from Blog
- How to have a static category/author page?
- Create single.php for specific category by category id
- Show posts of one category only with Custom Taxonomy on single.php
- Save metabox checkboxes values to custom content type
- Select category in custom query
- Removed slug from CPT, now How/where do I hook the filter to the taxonomy term archive pages link?
- Getting WordPress custom taxonomy/category?
- Are Custom Taxonomy Templates Possible?
- Remove “Parent” Selection When Adding/Editing Categories?
- Display empty taxonomy terms with get_terms()
- Get a list of Terms for a specific category
- How to display a description of a given category from a custom taxonomy
- Auto add taxonomy if post has category
- How to get the number of child categories a specific parent category has?
- Apply custom category template to subcategories
- Hide post meta data on a specific category
- How can I convert some categories to a custom taxonomy?
- Format Brand value in Category view [closed]
- Add custom taxonomy under the category title
- How to show in search results posts with a particular tag in a particular category?
- What is the advantage of using header-catname.php over is_category(‘catname’);?
- Category tree is flattened inside admin upon saving
- Remove ‘rel’ attributes from the_category() output
- Get multidimensional array that reflects category hierarchy
- Multiple menu items highlighted
- PHP Fatal error: Cannot use object of type WP_REST_Response as array in wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php
- If statement within PHP echo
- How to know if it’s a child taxonomy?
- Taxonomies for WordPress Media Library [duplicate]
- in_category() works in single.php but not in page.php?
- Use a wordpress page to display a certain category
- wp_dropdown_categories and custom taxonomy + custom post type
- Weird problem happening with custom taxonmy when creating/updating posts
- How to view WordPress’ default category IDs?
- Multiple Category Search
- How do I add a function on a specific post category?
- Specifying multiple categories in URL (permalink)?
- Should the actual /category/ directory be 404? Is that normal WP behaviour
- Limit number of terms that a custom taxonomy can save per custom post type
- How to customize category template?
- Category-slug.php not being used
- Can you pre-check wordpress categories?
- Change existing taxonomy settings when using custom taxonomy
- How would I go about adding custom header images per category?
- How to get the id from the custom category?
- Automatically exclude categories from metabox based on title
- Display posts separated by Category in Author’s page
- One Specific Category To Permalink
- Hide parent categories when clicked, and show it’s childs
- How to categorize posts under Category 1 and Category 2 which are separate lists of categories, and display them as separate lists in widgets
- add_rewrite_endpoint returns 404 on archives
- Custom sub taxonomy order by
- Add category only if post has custom taxonomy category
- Filtering *out* a taxonomy from the admin post list
- Categories overview that links to page displaying posts
- How can I edit the ‘Most Used’ tab in the categories meta-box to show another custom taxonomy?
- Get all media categories
- How to rewrite the post URL according to the category?
- Add child category to parent on post creation and save
- How to build a simple nav system of custom post type categories and its posts?
- Get Number of total Parent Categories for Custom Taxonomy
- Get posts from specific taxonomy term
- Display thumbnails for certain category posts
- Keyword search in multiple categories
- Is it possible to remove from default category widget?
- How to customize my category pages