Try this may be help you.
$terms = get_the_terms($post->ID, 'section' );
echo '<ul>';
foreach ($terms as $term) {
$term_slugs_arr[0] = $term->name;
$termchildren = get_term_children( $term->term_id, 'section' );
foreach ( $termchildren as $child ) {
$term = get_term_by( 'id', $child, $taxonomy_name );
echo '<li><a href="' . get_term_link( $child, $taxonomy_name ) . '">' . $term->name . '</a></li>';
}
}
echo '</ul>';
OR
Check this Link
Related Posts:
- Order get_terms by term meta
- Get parent id by term id
- When to / not to use wp_get_post_terms vs get_the_terms?
- Why does WordPress combine a term with the same name in the wp_terms table?
- Correct use of get_the_terms()
- wp_list_categories: order by term order?
- I have a term_taxonomy_id — is there an API call to get the taxonomy?
- Exclude Child Terms From Parent Posts
- same taxonomy for several post types: how to hide empty in a specific post type?
- How to sort terms with diacritical signs?
- get_terms(); show private posts when logged in
- Get category ID after wp_insert_term
- How to order get_term_children output by alphabetic order
- Term begins with a letter
- get_post_terms not working as expected
- wp_update_term not creating new unique slug
- Wp set post terms not work
- How to Get All Taxonomies AND All Terms For Each Taxonomy With Post Count Zero
- Get post terms for multiple posts at once?
- Get the Term List – Ordering
- Reduce / optimize calling of wp_get_object_terms() when generating permalinks
- Check if an array of posts has posts from a specific category
- Get only one product category woocommerce
- How to trace/fix false $term->count, rogue term relationships?
- How to order and count get_terms by specific post type?
- Get those terms with a specific meta key value
- What is the term shortlink structure?
- get_term_by “name” not working with & in name
- I want to loop through Woocommerce Product Catogories and show them in dropdown
- Invalid argument supplied for foreach() in search.php
- setting taxonomy term to bulk posts using ids
- Modify automatically generation of slug when term is created
- get_terms ‘number’ parameter does not appear to work
- Does get_terms() use any sort of caching on its query?
- 404 on term taxonomy archive pagination only with some terms
- Clone Terms of one taxonomy to another
- Get random out from get_terms()
- Create / Close Div in Array [closed]
- Conditional based on number of specific custom taxonomy terms in archive.php
- Categories order with get_terms_args not working in 4.7
- Faceted search with WP-API data
- Show List of Terms (not posts) that have been Recently Updated?
- import_id parameter for wp_insert_term to create custom ID for category
- Query to get term id using post id?
- How to get a post’s associated taxonomies and terms in wp api v2
- wp_set_object_terms not working inside loop
- get_the_terms() not returning expected result
- Get all terms linked to a post and include those who not connected from get_terms and sort
- Add HTML to Term Description
- Get the ID of category page with or without any posts
- single_term_title() running before get_the_title() [closed]
- Get terms within a custom taxonomy
- How to get terms of not only the current cat but also of all its children
- How do I print a term list but alter the link text?
- How to get the $meta_type given the $object_id
- $args for get_terms() to return ORDER BY FIELDS
- How to create a array that contains all of the children slugs of a specific parent category
- Getting terms to have space between them
- Temporarily un-associate term for an amount of time
- How to extract one field from wp_get_post_terms objects?
- Custom term templates
- INSERTING Data into table with placeholders
- Get fuzzy matches from get_term_by
- Taxonomy Drop Down with hierarchical view using $terms
- How to check if a term is parent to another?
- Create Terms on taxonomy by text field
- Customizing the wordpress tag-cloud output
- How to show posts from category A on category B page?
- How to use category slug to echo a page’s content with the same slug
- Can we apply hide empty to get_the_terms?
- wp_set_object_terms doesn’t work
- Why does term get inserted twice when using dynamic slug?
- How to use get_terms() returning only the terms that have posts with a certain custom field value
- how to show all categories by get_terms
- wp_set_object_terms() to update a post taxonomy value
- How to display taxonomy order child, parent
- Update term_id to new value wherever it exists, to combine the two.
- wp_get_post_terms – Do Not list Duplicates
- How to show term child only if has a post
- get_terms for all custom taxonomies shows invalid taxonomy error
- wp_set_post_terms struggle :(
- How to show only tagged CPT categories / taxonomies for a custom post type?
- Is there any WordPress way to get all categories for some selected posts?
- Order terms by creation date
- Unable to retrieve any child terms using get_terms
- Wrap custom terms loop
- Get terms parent ID for conditional IF statement
- Get count for all terms inside a parent term
- add links to list of post terms
- list of tags overlay
- When I Use function wp_insert_term() function it gives me Invalid taxonomy object
- Get only last child category link of products
- Get Parent Custom Taxonomy Term and Color Div background
- Get object terms with no children?
- Attempting to filter posts using get_terms
- How we retrieve the ‘tags’ and ‘attachment’ of the custom post which is created by wp_insert_post();
- How to solve/debug get_terms suddenly showing no results?
- How to display First level child terms of current term’s parent taxonomy?
- Woo – Change order status by category [closed]
- How can I replace the values in WP_Term?