<?php
$args = array(
'orderby' => 'name',
'parent' => category id,
'taxonomy' => 'category',
'hide_empty' => 1 ,
'number' => 'category limit'
);
$categories = get_categories( $args );
$content='';
foreach ( $categories as $category ) {
echo '<a href="' . get_category_link( $category->term_id ) . '">' . $category->name . '</a><br/>';
}
?>
$args = array(
'orderby' => 'name',
'parent' => category id,
'taxonomy' => 'category',
'hide_empty' => 1 ,
'number' => 'category limit'
);
$categories = get_categories( $args );
$content='';
foreach ( $categories as $category ) {
echo '<a href="' . get_category_link( $category->term_id ) . '">' . $category->name . '</a><br/>';
}
?>
Comments
Post a Comment