Dropdown order conflict
-
Hello,
I use Simple Custom Post Order plugin to reorder my taxonomies, but I want Beautiful taxonomy filter dropdown to be ordered by name. I’ve tried to use filter, but SCPOrder overrides dropdown order with custom values anyway:
function modify_dropdown_orderby( $orderby, $taxonomy) { $orderby = 'slug'; return $orderby; } add_filter( 'beautiful_filters_dropdown_orderby', 'modify_dropdown_orderby', 10, 2 );
Is there a way to solve this “conflict”?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Dropdown order conflict’ is closed to new replies.