Great googly moogly, I figured this one out.
$values = get_post_meta( get_the_ID(), 'your_meta_whatever', true );
foreach ($values as $value)
{$term = get_term_by('term_id', $value, 'your taxonomy');
$name = $term->name echo $name;}
If you want to keep ’em separated by commas or the characters your choice
$values = get_post_meta( get_the_ID(), 'your_meta_whatever', true );
$total = count($values);$i=0; foreach ($values as $value) {$i++;
$term = get_term_by('term_id', $value, 'your taxonomy');
$name = $term->name;
echo $name;
if($i !=$total) echo', ';}
Related Posts:
- The Difference Between Hierarchical and Non-Hierarchical Taxonomies?
- How to have “the most used tags” taxonomy always expanded?
- Search for tags
- WP native tag suggest metabox. How does it process tag id?
- Change order of WordPress tag cloud
- Unable to delete a Category and Tag that share same slug
- How do I get the current tag out of a taxonomy?
- WordPress as thesaurus/dictionnary: what approach?
- Set attachment tags from attachment’s custom field data
- Adding tag’s featured image to tag archive
- How to restrict users in edit post that can just select exists tags? not add new
- How to sync to custom taxonomies (tag structure)
- Taxonomy Tag Conditionals
- Display a tag only if there is a description
- Why does WP_Query strip colons from tag names?
- Advice on how to build multiple cross-tagged content types
- Categorize wordpress tags
- How to make tags show up in search results?
- Sorting tags by name
- Tags hierarchical
- Calling an Archive Page with specific Tag/Tax ID
- I want to edit the tags template by adding text that displays all tags from the listed posts
- show recently added tags to tag cloud
- how to print post tags [duplicate]
- Recent posts by taxonomy and filter by tag
- How to change value in wp-include/taxonomy.php without exchanging the WordPress-core
- Add a tag like a post
- How do I add tags/taxonomy to images + a query field on page to query ‘albums’ (images with same tag/taxonomy)
- Custom Titles for Multiple Tag Taxonomy Page
- Hiding a tag from display
- How to show a hierarchical terms list?
- Why does get_term() require taxonomy? Are term_ids not unique?
- Control term order on a per-post basis
- get term by id without taxonomy
- WordPress – Creating multiple versions of the same single-customtype.php depending on selected taxonomy categories
- Exclude custom taxonomy from search results and archive pages
- get_terms with posts that have a different taxonomy with term x
- check if tag exists in wp database
- How to update taxonomy custom field with wp_update_term()?
- Add Thumbnail to wp_list_categories()
- Display Post by taxonomy and taxonomy child
- Fatal error: Call to undefined method stdClass::filter() in wp-includes\taxonomy.php on line 805
- How do I display a tag cloud with both post tags AND a custom taxonomy?
- Let users create a new custom taxonomy entry from frontend (without creating a post)
- WordPress built-in method to extract array of term IDs?
- How to Retrieve a Taxonomy Term’s ID?
- Why does querying on post_tags (which has been applied to custom post types) only return posts?
- Search Posts / Pages with multiple options?
- Order custom Taxomony alphabetically and reversal after clicking a button?
- Set multiple Post Terms in same Taxonomy
- WordPress Customizer – pass setting value into another control to live update drop-down choices
- custom post type and taxonomy url rewrite without tax-name
- Show child terms of current term of the taxonomy
- Display specific taxonomy
- add upload image to default taxonomy
- Way to bulk make all my tags lowercase?
- How to get custom field value in frontend for taxonomy
- Syntax help needed: Taxonomy Query
- Expired event redirect to parent category
- Different permissions for same type of post
- custom taxonomy terms archive page
- SQL query joining on taxonomy tables not returning what I would expect
- List sub-taxonomies from current taxonomy
- Retrieve list of taxonomies in json
- Match and Merge Terms in Different Taxonomies
- Can you have seperate sidebars for multiple taxonomy archives?
- Display check marked taxonomies as drop down menu
- How to order a taxonomy’s terms numerically, from lowest to highest using get_terms
- Displaying Custom Taxonomy Children in Dropdown
- Display List of All Taxomony Terms of A Post
- WP_Query, Taxonomy, list of attached items to a Term, sorted
- Query Two Different Taxonomies Nested
- wp_insert_term doesn’t want to enter its data into custom taxonomy
- Is it possible to prevent the deletion of taxonomy by detecting $_GET request
- Showing related post for custom taxonomy
- Noticed updating taxonomy terms take a long time and run out of memory
- List of all posts from current category on single portfolio page
- How to disable the use of certain words in categories
- Filtering posts in category by tag URL
- What is the use case for sharing a term between multiple taxonomies?
- How do i get the link of the assigned taxonomy term?
- Add pagination to for each taxonomy terms
- Exclude Tag Links from and Text
- Make/create a category for every page
- All tag/category/custom taxonomy archives 404
- Get a specific category in multiple categories
- $product->ID in has_term() not working, but manually inputting the ID works, why?
- how do you get one specific term from a shortcode attribute?
- Fatal error Call to a member function filter()
- Using is_tax with multiple taxonomies
- Taxonomy pages, stop them indexing or being generated?
- How to filter the terms to a special custom taxonomy?
- Pages throwing 404 error on server load
- Access WordPress Tag Function From Modal
- Display yesterday’s last post’s Custom field from Unique terms of one Taxonomies
- Apply custom taxonomy archive template to children
- Why does my taxonomy code display the first alphabetical term?
- Custom Taxonomy link out the loop
- Any way to make custom taxonomy field searchable?
- IF taxonomy archive is hierarchical THEN