Why does the plugin does not order terms in get_terms_orderby hook in admin?
-
The plugin hooks into the
get_terms_orderby
filter using thehicpo_get_terms_orderby
function. In this function, the first line isif ( is_admin() ) return $orderby;
. This prevents the terms from showing in the customized order in the admin listing. If I change the first line toif ( is_admin() ) return 't.term_order';
then it works OK. What is the reason for not showing terms in the custom order in the admin area?
- The topic ‘Why does the plugin does not order terms in get_terms_orderby hook in admin?’ is closed to new replies.