如果不愛<?php wp_list_categories( $args ); ?>
請服用以下
<?php $args=array(
'orderby' => 'name',
'order' => 'ASC',
'show_count' => true,
'title_li' => '',
'child_of' => 5,
);
$categories = get_categories($args);
foreach($categories as $category) {
$output = '<li>';
$output .= '<a href="' . get_category_link($category->term_id) . '">' . $category->name . '</a></li>';
echo $output;
}
?>
沒有留言:
張貼留言