I am trying to get the terms of a specific taxonomy to display on a page. The code is located in a page template and when I use 'get_the_terms' the result that shows is 'array'. Can someone explain this?
Wordpress Development - get the terms - returns 'array'
5.5k views Asked by Brandon Miller At
2
There are 2 answers
0
Peter Rowell
On
Slightly off-topic, but just yesterday I answered a question related to this over on wordpress.stackexchange.com. It uncovered some interesting variations on the theme of "getting taxonomies/terms associated with a post".
Related Questions in WORDPRESS
- How to add the dynamic new rows from my registration form in my database?
- Wordpress Site - pages have low text-HTML ratio
- wordpress delete unwanted location
- How to create a facet for WP gridbuilder that displays both parent and child custom fields?
- How to change woocomerce or full wordpress currency with value from USD to AUD
- error 500 on IIS FastCGI but no clue despite multiple error loggings activated
- Caching private wordpress rest endpoints
- How do i get my close button to work on a popup?
- SQL query to get student enrolled in this month in a course - Moodle
- What wordpress plugin prevent sharing of contact information amongst users?
- Password protected or private URL one-time viewable video access
- Download button not working in wordpress website. How can solve it?
- WP toolkit problem after deleting wordpress site manually
- TypeError: Failed to execute 'arrayBuffer' on 'Blob': Illegal invocation - Insert blob into database
- New Order Email Details Missing // Woocommerce / Woocommerce Bookings
Related Questions in LOOPS
- how to create Infinite Upgrades in a clicker game
- How do I write a loop in F# such that the value of a in the previous step is now assigned to b and so on?
- Algorithm for finding a subset of nodes in a weighted connected graph such that the distance between any pair nodes are under a postive number?
- Having issues getting the correct output with hi low game
- Pine Script: Loop Through Input Price levels & set Alerts for Each Price
- How to iteratively create matrices/vectors from columns/unique row values of dataframe, and pass them to subsequent code?
- Loop through multiple levels of a variable in R
- Matching hundreds non-adjaccent keywords in large text corpus in Python
- Reversing a number in Python
- How do I add a loop into this macro to repeat 'x' amount of times
- Optimising my C loop for a combinatorial problem
- Iterate over items in one array and groups of items in second array
- Cannot borrow variable as mutable within loop
- Taking all numbers from an arraylist and outputting only the even numbers
- Iterating through a string of long characters R
Related Questions in TAXONOMY-TERMS
- Hide Add to Cart in WooCommerce for variations with specific attribute value
- WooCommerce minimum quantity per category across multiple products
- Get a list of WooCommerce product attributes radio buttons from a product WP_Query
- Set Variant options/attributes values on WooCommerce
- Show Categories inside SubCategory page
- Import product categories parent / child relation in another way than ID in WooCommerce Rest API
- Add an attribute with a value to a WooCommerce product keeping existing attributes
- Shortcode displaying WooCommerce current product categories or tags
- Display WooCommerce product categories names with a different background color
- How to create custom taxonomy page? or custom archive page of custom taxonomy?
- Add product categories to WooCommerce product additional information
- How to redirect each WooCommerce product category to a different page
- Convert Woocommerce Brands name to attribute
- Get products that contain 2 specific tag terms via WooCommerce REST API
- Disable Woocommerce order completed email when order items have specific product tags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
It's corrent. As reported in the codex page for get_the_terms() return an array of terms. You can then use the array later in your code.
Do
to discover the structure of the terms.
This example prints out the name of the terms that are retrieved by the function.