wordpress Get All Parent Categories from Child Categories
In this Post We Will Explain About is wordpress Get All Parent Categories from Child Categories With Example and Demo.Welcome on Pakainfo.com – Examples, The best For Learn web development Tutorials,Demo with Example! Hi Dear Friends here u can know to How to Add Categories and Subcategories to WordPressExample
In this post we will show you Best way to implement wordpress get subcategories of current category, hear for get child category from parent category in wordpresswith Download .we will give you demo,Source Code and examples for implement Step By Step Good Luck!.
In wordpress get all the parent list and child list, sometimes we can have many get all the subcategories for a different data parent categories. here By default wordpress all the lists all sub-categories.
if i have category structure like
Main Categories 1
– 1.sub-categories
– 2.sub-categories
– 3.sub-categories
– 4.sub-categories
Main Categories 2
– 1.sub-categories
– 2.sub-categories
– 3.sub-categories
– 4.sub-categories
get all parent categories in wordpress
//display HTML View get Categories
-
'slug', 'parent' => 0 );
$categories = get_categories( $args );
//for each loop to get all sub_categoylist
foreach ( $categories as $List_category ) {
echo '
- ' . $List_category->name . ' '; } ?>
get parent category from child category wordpress
category_parent) $this_category = wp_list_categories('orderby=id&show_count=0&title_li=&use_desc_for_title=1&child_of='.$this_category->category_parent."&echo=0"); else $this_category = wp_list_categories('orderby=id&show_count=0&title_li=&use_desc_for_title=1&child_of='.$this_category->cat_ID."&echo=0"); //check condition for categories if ($this_category) { ?> //display HTML View get Categories
category_parent); //check condition for categories if (!empty($parent_list)) { //print_ parent_list echo '» ' . $parent_list; } else { echo '» ' . $List_category[0]->cat_name; } ?>
I hope you have Got What is display subcategories on category pages in wordpress And how it works.I would Like to have FeadBack From My Blog(Pakainfo.com) readers.Your Valuable FeadBack,Any Question,or any Comments abaout This Article(Pakainfo.com) Are Most Always Welcome.