What function will display custom taxonomies associated with a post as text?
I'm currently using get_the_term_list which works great for a singular page but not so much when using a taxonomy in the archive-postype.php permalink title tag.
|
What function will display custom taxonomies associated with a post as text? I'm currently using get_the_term_list which works great for a singular page but not so much when using a taxonomy in the archive-postype.php permalink title tag. |
|||
|
|
|
wp_get_object_terms() returns the terms associated with an object (eg a post or a page or custom post) as text (normally in an array). From the Codex page for wp_get_object_terms()
|
|||
|
|
|
I think the best way is to implement a filter for the term list, that extract via regexp only the text, from the list get_the_terms_list() is implemented here: http://core.trac.wordpress.org/browser/tags/3.0.4/wp-includes/category-template.php#L948.
You can implement you own filter. |
|||
|
|
|
However @anu is right, I figured out you can call the php function strip_tags to strip out the tags of the return value.
|
||||
|
|
|
I need the same and tried Zack solution that works great. For instance, if you need onlye the term to put in css id or class. Only one anotation about the solution, the function is bad called, properly is "get_the_term_list". I show my example:
|
||||
|
|