Hi all, Hope someone can help. I'm trying to add some code to the category.php file so that when you click on a category you get a list of the child categories, grandchild categories and posts.
Wordpress Coding Question
5
Hi all,
Hope someone can help. I'm trying to add some code to the category.php file so that when you click on a category you get a list of the child categories, grandchild categories and posts.
I found this code somewhere but it only lists the child categories:
plus when you click on a child category it says No Categories.
Can someone help?
let me know! thanks
C
Hope someone can help. I'm trying to add some code to the category.php file so that when you click on a category you get a list of the child categories, grandchild categories and posts.
I found this code somewhere but it only lists the child categories:
PHP Code:
<?php // list child categories
$cat_id = get_query_var('cat');
$catlist = wp_list_categories('echo=0&orderby=id&title_li=&child_of=' . $cat_id);
if ($catlist) {
echo $catlist;
} else {
echo "Please don't print No categories";
} ?> Can someone help?
let me know! thanks
C
- mywebwork
- moodykitty
- mywebwork
- moodykitty
Next Topics on Trending Feed
-
5