Here you go:
$args = array(
'post_type' => 'listing',
'order' => 'ASC',
'hide_empty' => false,
'parent' => 0,
);
$listCatTerms = get_terms( 'listing-category',$args);
if ( ! empty( $listCatTerms ) && ! is_wp_error( $listCatTerms ) ){
echo "<ul>";
foreach ( $listCatTerms as $term ) {
echo '<li>'.$term->name.'</li>';
$child_terms = get_categories( array(
'parent' => $term->term_id,
'hide_empty' => 0 ));
//var_dump($child_terms);
echo "<ul>";
foreach($child_terms as $child_term){
echo '<li> -- '.$child_term->name.'</li>';
}
echo "</ul><br>";
}
echo "</ul>";
}
This should display the name of parent category and all its child category after.
Related Posts:
- How to create an automatic MultiColoumn MegaMenu with Categories WordPress
- Gutenberg editor add a custom category as wrapper for custom blocks
- Rewrite rule page url with category
- Different template for subcategories
- WP_Query not looking at child category
- Deleting default category in wordpress
- Most recent post from every category/taxonomy but sorted by date
- Category Archive, list subcategories of each post
- Disable pagination only for specific category
- Add custom taxonomy terms to WordPress menu dynamically & append #slug to url
- Script to duplicate categories as tags
- Check if post belongs to any category
- How to add categories to products in woocommerce programatically? [closed]
- Is there a plugin that will completely remove the category system?
- How to sort categories by id in wordpress admin
- How to override Category rendering mechanism
- How to get only the last child of category slug?
- Remove Parent Category from Child Category URL
- Multisite – create a category in specific site
- How do you remove display of WooCommerce product category on single product page?
- Allow users to post to a certain category
- Show recent posts in menu?
- Do I have to use categories?
- get_the_category and echo out link to child-most/deepest category
- Categorising posts/pages into years published
- Convert the default sub-category dashes to bullets or any other characters
- How to check category of of custom post type or not
- Display category description instead of “nothing found” page
- How to query post like normal search would do. within search.php page
- Link Attachment Image to Category
- Modify WordPress SQL Query to pull from within a category
- How can i insert term in a specific language of Polylang?
- How to retrieve more posts from a custom post type that are in the same category as the current post
- WordPress Get Posts from each category equally
- posts_nav_link(); picks up index.php instead of category.php as template
- Category name field strips HTML tags. How can I reverse this?
- Same base for category and post
- Get all media categories
- Custom taxonomy/category order
- Custom SQL Query: Get all posts with category id and a concated list of tags on each post
- Add tag parameter to category.php
- Check IF category_description exists
- Why custom taxomony not showing when create a post?
- wp_list_categories with show_count, except for specific categories
- Adding a H1 Tag to Post Tags automatically, but hide the tag? (Same for Category)
- get full category structure by post id
- Remove Archive | from Categories
- Showing Categories for Page Edit – without plugin
- Difference between wp_list_categories and get_categories
- Using categories with pages
- Show next post in same category but start from the latest
- Have posts that belong to multiple categories, exclude some categories from homepage
- Only first category!
- How could I write a get_categories_by_year() function?
- How to add icon over specific thumb
- add_settings_field (exclude categories->reading) wp_category_checklist
- Retrieve post tags from from main wp_query
- Listing Post Categories on Home Page
- Echo Category Nicename
- Explode() expects a string
- How to add meta description, keywords, custom title to a category template
- User level categories
- Exclude category from drop down list form
- How to set the same base url for two different taxonomies?
- Hide category name but show posts
- Programmatically Create Category and sub Category and sub sub Category
- Parent Category and Subcategory default text generated with category
- Post List by category and under custom taxonomy
- How to create a table with counts of category combinations?
- How to get the_category(‘, ‘) with link “title” attribute
- product_cat image url from database
- How to get the term id inside the start lvl method of category walker?
- Multiple if statements with else for get_the_category [closed]
- Balance Tags to the_content Words Length
- How to create template for children category?
- Most efficient way to display current post subcategories?
- Using a template page parent breaks page
- How to Query the Top 5 Posts of a specific category?
- Setting category for post as default
- How to add a post with new Taxonomy without assigning to default category?
- Query post only from categories that have subcategories
- How to get the link of all categories
- foreach,having wp_query inside, breaks after showing one result
- Display a category name automatically using code in the functions.php file
- Removing categories, Comments etc from posts?
- 2 loops in archive.php (one for each category)
- How to load jquery tag-it plugin into admin?
- Include Category Description in search result
- not empty categories don’t show in menu [closed]
- Show parent-child relationship for categories in the wordpress admin
- How to assign different categories to pages in wordpress?
- All post of child category not in top category
- How to add a tag above a category post that displays the category name in WordPress
- Woocommerce – Display product category of product in Orders page
- How to show video from wp option value?
- Changing Woocommerce categories programatically
- Add an Exclusive or featured tag line to article titles
- How to link ACF relationship field to the new Query block in Full Site Editing
- Order Categories by Character Count
- How to remove the category from the url only for a specific category of articles on wordpress