It looks like you’re using the “Pods – List Items” widget, correct? If so, the fields for the widget mirror our options for the Shortcode and specifically the find() functionality that powers it.
For reference, there’s a chart below on the find() doc page which lists how to target various fields / meta fields with our simple syntax (which mirrors MySQL because it’s powered by MySQL).
To target the specific field you’re after (the built-in Taxonomy count value), you can use tt.count
(the tt
part references the wp_term_taxonomy
table in the WordPress database, and the count
is the column in that table which stores the cached last calculated count of posts associated to that term). To order it descending, you can use tt.count DESC
and that will take care of that. Comma-separate multiple fields if you want to order by more.