Use the get_terms_args hook and modify the orderby argument, like so:
add_filter( 'get_terms_args', 'my_sort_terms', 10, 2 );
function my_sort_terms( $args, $taxonomies ) {
$args['orderby'] = 'description';
return $args;
}
Possible values for this argument are listed in the codex.
Related Posts:
- How to Change the Categories Order in the Admin Dashboard?
- Order get_terms() By Custom Field
- How to remove categories filter from wordpress admin?
- Weird behaviour when adding terms/term_taxonomies programmatically
- Sort posts by tags in category pages
- Display all posts in category, with specific tag posts at top
- Make parent categories not selectable
- I want to order categories based upon the latest post time
- Is it possible to disable certain user roles from creating tags?
- WordPress Ordering Problem. How to fix ordering 1-10-100 issue?
- Why adding Categories does not auto refresh in Backend while using my custom theme?
- Order posts by category name
- How to show empty category in admin menus search
- Remove Categories and Tags from Admin Dashboard
- How to sort categories by id in wordpress admin
- Filtering by Category doesnt paginate correctly on the backend
- Add a wordpress blog to my website having users
- Collapse subcategories in post edit screen
- Arrange posts by date in front page
- Making the category & tag Description textarea bigger
- How to redefine the sorting of product categories by menu_order?
- Filter Categories in meta box for CPTs
- Order categories by name or view count
- WooCommerce – How to show specific category first-rest of products-specific category last
- Filtering *out* a taxonomy from the admin post list
- Custom taxonomy/category order
- category doesn’t showing up in admin
- WP admin broken. Not saving catgories or adding categories to menu
- I want to display the all the posts that are inside a certain subcategory
- Categories in admin interface: can they be collapsible?
- wp e-commerce group product by category [closed]
- List posts in alphabetical order
- How to insert category list into post creation page, and retrieve chosen categories?
- How do I add Category Body Classes to Admin?
- Admin: Navigation Menus do not show empty categories/taxonomies in the list’s search tab
- how i can hide some category from author admin panel?
- Custom loop of a single category, cannot order by date. What am I missing?
- How to change the order of the subcategory and category in a post?
- How do order product categories – on a parent category page – in Woocommerce?
- How to hide some categories in dashboard
- Edit tag_id in category pages of dashboard
- Natural sort / ordering wp_dropdown_categories
- Sort posts alphabetically by category/custom taxonomy, insert divider between different types
- Page category filter in admin dashboard
- How can I order all subcategories alphabetical independent of the parent categories?
- Ordering terms whilst in loop
- Modifying category order
- How to check a category checkbox using JavaScript
- wp_category_checklist won’t show up for non-admin users
- Configure query with multiple categories in a custom order?
- $args Orderby The number
- How can I add a Categories page link to a menu? [closed]
- How to load jquery tag-it plugin into admin?
- Assign a category by user and customize the edit-tags.php?taxonomy=category page
- Show parent-child relationship for categories in the wordpress admin
- Woocommerce custom taxonomy order
- Woocommerce – Display product category of product in Orders page
- Post list category plugin alphabetical order [closed]
- Error while add Category or Tag in WordPress
- WP REST API: filter by category 1 AND category 2
- Get only the top level categories using get_categories() without foreach loop
- Fixing category count
- Can a Child Category Have More than One Parent?
- Rewrite URL with category and tag combined using WP_Rewrite
- Update term count using a callback function
- Related content based on category name
- programmatically adding categories to custom taxonomy
- Migrate posts into a different category
- Is there a cleaner way to get post count for a category in category.php?
- Get category URL knowing it’s id
- How could I know all the categories from post?
- How to make subcategory for custom post and and display?
- Get category’s parent category while using get_the_category_list
- How to show the category of custom taxonomy
- Show testimonials based on post category matching product name
- WordPress list categories dropdown with parent-child relation and child under it’s parent
- Remove parent category from child/sub-category page URL in WordPress
- Add code to header based on category for specific posts?
- How to only show parent categories in sidebar
- Displaying a custom field in Category Archives
- Custom Portfolio Page
- Custom Fields Value As Taxonomy
- How do you get sticky posts to work with categories?
- How to “remove” WordPress categories UL and make the list loop in a horizontal line?
- Default category isn’t saved in database
- Help with Wp + Mixitup code
- Matching usermeta at registration to categories of content
- How do I hide posts in a category from all listings but still allow the posts to be viewed?
- How to show monthly archive posts?
- Limit authors on specific catogories
- how do I exclude a category foreach
- CPT Custom post type Tags & Categories not showing for ‘Editor’ user in editor
- How to sort posts alphabetically based on a specific parent category
- Restricted category in Woocommerce [closed]
- WordPress Related Posts by Title and Category
- Trouble Fetching Posts Using WordPress API: No Response from Specific Category
- Exclude category when displaying all categories assigned to a post
- Using same term for slug and category
- How to hide specific categories in the “add post” section for specific user roles?
- How can I display the category descriptions below the category name using a functions.php filter?