Tagged Questions
0
votes
1answer
38 views
get a simple array of all of the term names that exist in all taxonomies
I may be going about this all wrong but I'm trying to use get terms to get all of the terms that exist in every taxonomy.
I think this might be a php question.
get_terms allows you to specify which ...
2
votes
1answer
127 views
Sort a custom post type array numerically
We've set up drop down lists to allow people to filter posts based on custom post types.
In order to populate the drop down list I am using:
<?php $terms = get_terms("ratios");
$count = ...
0
votes
1answer
528 views
How to order a taxonomy's terms numerically, from lowest to highest using get_terms
I'm using get_terms to output a taxonomy's terms, which are all numbers:
For example:
4, 6, 8, 10, 12
How can I order these numerically, so they appear exactly as above?
What I'm getting is ...