Forums

List of sub-sub-category (2 posts)

  1. noumen
    Member
    Posted 2 years ago #

    Why this code show only the last added sub-sub-category.

    I'd like to show every sub-sub-categories form sub-category 8

    <?php if ( is_category('8') ) {
    	       	foreach (get_the_category('child_of=8') as $category); ?>
           	<div>
    	       	<h2><?php echo $category->cat_name; ?></h2>
        	   	<p><?php echo $category->category_description; ?></p>
           	</div>
  2. MichaelH
    Volunteer
    Posted 2 years ago #

    <?php
    foreach (get_categories('child_of=8') as $category) { ?>
           	<div>
    	       	<h2><?php echo $category->cat_name; ?></h2>
        	   	<p><?php echo $category->category_description; ?></p>
           	</div>
           	<?php
    }
    ?>

Topic Closed

This topic has been closed to new replies.

About this Topic