simple-custom-post-order
simple-custom-post-order copied to clipboard
Ignore the order of terms in the `include` parameter
The plugin does not allow to sort terms in the order specified by the include parameter of the get_term() function or the WP_Term_Query class.
$terms = get_terms( array(
'include' => '16,15,14',
'orderby' => 'include',
'taxonomy' => 'my_custom_taxonomy',
) );
While the plugin is deactivated, everything works correctly. But as soon as the plugin comes into play, it rearranges the terms according to the term_order.
This problem still exists