Woocommerce custom taxonomy order
You may consider using the get_terms() function to generate a list of the items in a custom taxonomy. I’m sure there are other good ways of doing this, but there are plenty of parameters here you can try out to get the order you need. $terms = get_terms( ‘custom_taxonomy_here’, ‘orderby=count&hide_empty=0’ ); if ( ! empty( … Read more