[Plugin: Custom Taxonomy Sort] How to sort tax_query?
-
I’m a in a Custom Page and I’ve installed Custom Taxonomy Sort plugin (turning off automatic sorting). This is my query (not-sorting):
$args=array( 'tax_query' => array( array( 'taxonomy' => 'portata', 'field' => 'slug', 'terms' => array( 'primi-piatti','secondi-piatti') ) ), 'post_type' => 'ricetta', 'post_status' => 'publish', 'posts_per_page' => -1, 'orderby' => 'custom_sort' ); $my_query = null; $my_query = new WP_Query( $args );
How can I make it works?
https://www.ads-software.com/extend/plugins/custom-taxonomy-sort/
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘[Plugin: Custom Taxonomy Sort] How to sort tax_query?’ is closed to new replies.