When using wp_get_post_terms() I can produce a list of taxonomy terms associated with a post. However, I only want to show the taxonomy terms that have been selected for that post. Using the aforementioned function and get_terms() will successfully find the taxonomy terms, but it will show all of the terms. Not only the ones that have been selected. In the $args array for the functions I've looked for a 'selected' filter, but I found none and when I tried it, it didn't work.

Am I trying to do something that can't be done? I'm sure it's something that is starring me right in the face. I just want to ask the pro's before I make major changes to the way I'm doing things.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

wp_get_post_terms only returns terms that have been selected for that post, it doesn't return all taxonomy terms.

http://codex.wordpress.org/Function_Reference/wp_get_post_terms

link|improve this answer
I must be going astray somewhere then. Let me ask you this, and I'm sorry if I'm sound ridiculous. after getting wp_get_post_terms()'s array from my specific post and taxonomy when I do $thevariableholdingthearray->name; nothing will echo from that. I have also tried $thevariableholdingthearray['name'] and $thevariableholdingthearray[1]. I am frustrated :-( – wooWoowoo Jul 29 '11 at 9:11
Try foreach($array as $term) { echo $term->slug; } – Dogbert Jul 29 '11 at 9:19
Son of a glitch. You know what, I was using the_ID() to return the ID of the post I wanted. I should have been using get_the_ID();. Thanks for you time Dogbert. – wooWoowoo Jul 29 '11 at 10:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.