• Could someone help me with this? I have been breaking my head with this for two days.
    wp_list_cats(‘child_of=23’) lists the sub categories of category of ID 23. Is there a simple method to format this list of sub categories on a front page along with excerpts taken from the description for that sub category?

Viewing 1 replies (of 1 total)
  • $categories = get_categories('child_of=23');
    foreach ($categories as $category) {
         echo $category->category_nicename;
         echo $category->description;
    }

    Modify it as you need it.

Viewing 1 replies (of 1 total)
  • The topic ‘list Sub category of a particular category with excerpts’ is closed to new replies.