WordPress category list of any parent category olatechproMarch 9, 20231 Views i want to show list of child categories of Blog category. how do i do that? Thank you Post Views: 1 Related postsGet rid of this Strict Standards warningWooCommerce: get_current_screen not working with multi languageCan’t login on WordPressForce HTTPS using .htaccess – stuck in redirect loopWordPress: Ajax not working to insert, query and result dataHow Can I pass an image file to wp_handle_upload?
Try this code which will display child categories of the current post: $category=get_the_category(); $parent_id = $category[0]->cat_ID; foreach($category as $childcat) { if (cat_is_ancestor_of($parent_id, $childcat)) { echo $childcat->cat_name; } } Put it inside the loop. Log in to Reply
Use wp_list_categories() with the child_of parameter set to the ID of the parent category. Log in to Reply
Try this code which will display child categories of the current post:
Put it inside the loop.
Use
wp_list_categories()
with thechild_of
parameter set to the ID of the parent category.