name;
if ( ! isset( $args['popular_cats'] ) ) {
$args['popular_cats'] = array();
}
if ( ! isset( $args['selected_cats'] ) ) {
$args['selected_cats'] = array();
}
$class = '';
$inner_class = '';
if ( ! empty( $args['list_only'] ) ) {
$aria_checked = 'false';
$inner_class = 'category';
$output .= "\n" . '
' .
'' .
/** This filter is documented in wp-includes/category-template.php */
esc_html( apply_filters( 'the_category', $category->name, '', '' ) ) . '
';
} else {
$output .= "\n" .
'';
}
}
}