Sunday, July 1, 2012

Show Children Categories from Parent Category

$category = get_the_category();
$args = array(
'type'                     => 'post',
'child_of'                 => $category[1]->term_id,
'parent'                   => '',
'orderby'                  => 'name',
'order'                    => 'ASC',
'hide_empty'               => 1,
'hierarchical'             => 1,
'exclude'                  => '',
'include'                  =>'' ,
'number'                   =>'',
'taxonomy'                 => 'category',
'pad_counts'               => false );




        $categories = get_categories($args);
        echo "<pre>";
        print_r($categories);
        echo "<pre>";

No comments:

Post a Comment