Remove a child category
-
Hi, i’m this to show a list of child category and the descripton:
[please use the ‘code’ button to mark any posted code]
<?php $args=array( 'orderby' => 'name', 'order' => 'ASC', 'child_of' => 4 ); $categories=get_categories($args); foreach($categories as $category) { echo ' <li>'; echo '<h3><a>term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a></h3> '; echo '<p>'. $category->description . '</p>'; echo '</li> '; } ?>
And in my theme show:
News (ID 4) – Hidden – OK!
– Music OK
– Shows OK
– Books OK
– – Category Book 1 – NOWhat can i do to hidden a “child-child” category? In my exemplo, i dont want show the “Category Book 1”. I try using in “$args” the line ‘depth => 1″.
Some idea? Tks!
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Remove a child category’ is closed to new replies.