I was able to find the answer after some trial and error / tons of searching, this looks like the correct filter, just need to make sure we’re in the admin section and we’re in the correct taxonomy.
/**
* Modify the admin listed order of terms
*
* @param String $orderby
* @param Array $args
* @param Array $taxonomies
*
* @return String $orderby
*/
function change_term_order( $orderby, $args, $taxonomies ) {
if ( is_admin() && 'tax_products' !== $taxonomies[0] ) {
return $orderby;
}
$orderby = 'term_group';
$args['order'] = 'ASC';
return $orderby;
}
add_filter( 'get_terms_orderby', 'change_term_order', 10, 3 );
Related Posts:
- What are the standard admin CSS id/class tags?
- Modal window from within WordPress admin
- How to Change the Default Home Page for the WordPress Dashboard?
- How To Remove WordPress Version From The Admin Footer
- Sort pages in loop by admin’s page attributes order field?
- Set Default Admin Colour For All Users
- Securing Admin Accounts – Username Discovery
- Sort admin menu items
- Can an admin check passwords of registered users?
- sort child pages on admin
- How-to make the admin area mobile friendly [closed]
- How to obtain the user ID of the current profile being edited in WP-Admin?
- 3.3: How do you hide the new dashboard welcome panel?
- initial sort order for a sortable custom column in admin
- Sortable admin columns, when data isn’t coming from post_meta
- Taxonomy/category hierarchy lost when editing posts [closed]
- Appearance->Editor not visible
- Integrate post tags in Post Edit page with qTranslate
- Possible to create placeholder images in WordPress editor that are clickable (should bring up uploader)?
- Admin pages have no content
- Blocking Administrative Access to Authors and Subcribers?
- Reorder plugin items in the admin menu
- wp-admin: Sort users by surname
- How to find out if an wp-admin action edited a file?
- How to display only logged in user’s post comments in comments area
- WordPress 3.8 get current admin color scheme
- Custom taxonomy admin description
- How to Use Resposive Tables in WordPress ADMIN Pages?
- How can I access profile Admin Colour Scheme
- I keep getting logged out in Firefox
- Custom taxonomy admin page
- Add tabbed menu to admin page
- remove_action with profile_personal_options
- Getting the different post statuses + count like in edit.php, in a custom submenu page
- how to redirect to url.com/wp-admin if url.com/admin is typed in?
- How To Create User Specific Admin User Pages?
- Change the Default Pages Menu View in wp-admin
- Conditionally load CSS/JS/PHP in wp-admin if using a mobile device
- How to disable automatic excerpt generation *in admin*?
- Limit Words in Category / Term Description – Admin Panel
- Change top level menu item to point to custom submenu item
- Associating custom submenu item with post type of top level menu item
- Adding text in more than one language (at the same time)
- wp-admin post.php JavaScript Links Not Working
- Admin multiple column sorting
- Super slow admin panel
- How do I add an admin notice within javascript in the admin interface for posts?
- Fatal error: Exception thrown without a stack frame in Unknown on line 0
- Modify “View” in admin panel for custom taxonomy
- Hide Pages on Edit Pages based on Capability (edit_others_pages)?
- Unable to Access WP Admin or Login buttons after Migration
- Add ‘Last Modified’ and Attachments (Yes/No) to WordPress Users Column
- Editors change a permalink on an unpublished post, but only admins change a permalink on a post that has ever been published?
- How Can I Found Admin Directory
- WordPress post feature image not uploading
- Combine and Minify wp-admin files, also re-write URI’s for CDN
- 500 internal server error on wp-admin only
- Redirect from the dashboard to edit.php if wp_is_mobile() is true
- Seems that admin_post_{action} does not executing
- Add Custom Script in Other Plugin’s Options page
- When submitting the form site.com/blog/wp-admin it goes to site.com/wp-admin
- Can I host WP-admin locally for a remote blog?
- get_current_screen and the WP_Screen class
- Is there alternative to WP_List_Table?
- Admin: Navigation Menus do not show empty categories/taxonomies in the list’s search tab
- WordPress Brute Force Prevention
- Admin login not working
- Adding and removing columns from the admin pages panel
- How to make sure your admin doesn’t hi-jack you site?
- How to change the descriptive text on the menus admin page?
- Dynamic WordPress Admin Panel
- Wp-Admin FTPS Connection Error unlike Filezilla
- Admin user column sort by numeric meta key
- How to update my website with WordPress?
- Can I show the tag admin interface on a post when logged in as an admin?
- wordpress login loop after install
- Unable to render Admin Notices
- WordPress login not working
- How to sort post_meta in edit.php?
- Admin blank but Admin menu showing
- Add Sort Link in Custom Post Type List
- Capability to read/edit page in wp-admin only for administrators
- Problems in migration of WordPress site from local server to the online server
- WYSIWYG editor not in a post editor?
- htaccess and htpasswd
- plugin to upload to youtube via wordpress [closed]
- Show parent-child relationship for categories in the wordpress admin
- You do not have permission to access this document on form submit
- Organizing Code in your WordPress Theme's functions.php File?
- How to remove admin menu pages inserted by plugins?
- Admin Ajax is returning 0
- Adding Fields to the Category, Tag and Custom Taxonomy Edit Screen in the WordPress Admin?
- Add custom column to Users admin panel
- Changing the Order of Admin Menu Sections?
- wp_verify_nonce vs check_admin_referer
- Add a Separator to the Admin Menu?
- How to determine whether we are in add New page/post/CPT or in edit page/post/CPT in wordpress admin?
- how to know if admin is in edit page or post [duplicate]
- Placing a Custom Post Type Menu Above the Posts Menu Using menu_position?
- Where in WP can I check history or log of updates of plugins etc?