$title = $cat->name;
$link = get_category_link($cat->cat_ID);
if ( 1 == $cat->count ) { //has one published post {
$my_query = new WP_Query('cat='.$cat->cat_ID);
while ( $my_query->have_posts() ) {
$my_query->the_post();
$link = get_permalink();
}
}
?>
|
$title = $cat->name;
$link = get_category_link($cat->cat_ID);
if ( 1 == $cat->count ) { //has one published post {
$my_query = new WP_Query('cat='.$cat->cat_ID);
while ( $my_query->have_posts() ) {
$my_query->the_post();
$link = get_permalink();
}
}
?>
|