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 ...
-1
votes
1answer
547 views
Isotope Drop Down Categories Filter Function
I have a code in my functions file that I am using to generate a list of categories so that I can use isotope to filter the current page. However I need to know how to -
How to make it a drop down ...
0
votes
1answer
122 views
ISOTOPE - Missing/Invalid Arguement Get Terms
I am trying to use the isotope plugin for sorting on my taxonomy page and even though I don't know much about how to set it up, I tried using some advice found on here.
Wordpress and isotope ...
0
votes
3answers
199 views
Using get_terms for custom taxonomy in functions.php
I`m trying to retrieve the names of taxonomy items and include them into a theme admin panel.
function retrieve_my_terms() {
global $terms;
$terms = get_terms('taxonomy');
foreach ...