Skip to content

Instantly share code, notes, and snippets.

@jhebb
Created October 23, 2013 19:34
Show Gist options
  • Save jhebb/7125184 to your computer and use it in GitHub Desktop.
Save jhebb/7125184 to your computer and use it in GitHub Desktop.
WordPress taxonomy custom orderby description
// Custom 'orderby' for taxonomies
function customtaxorder_applyorderfilter($orderby, $args) {
if($args['orderby'] == 'description')
return 'tt.description';
else
return $orderby;
}
add_filter('get_terms_orderby', 'customtaxorder_applyorderfilter', 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment