(I also posted this on the WordPress support forum but it looks like that forum isn't maintained anymore)
The plugin hooks into the get_terms_orderby filter using the hicpo_get_terms_orderby function. In this function, the first line is if ( is_admin() ) return $orderby;. This prevents the terms from showing in the customized order in the admin listing. If I change the first line to if ( is_admin() ) return 't.term_order'; then it works as expected. What is the reason for not showing terms in the custom order in the admin area?
(I also posted this on the WordPress support forum but it looks like that forum isn't maintained anymore)
The plugin hooks into the
get_terms_orderbyfilter using thehicpo_get_terms_orderbyfunction. 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 as expected. What is the reason for not showing terms in the custom order in the admin area?