Add get_the_category_list(). http://mosquito.wordpress.org/view.php?id=970 Hat tip: nbachiyski

git-svn-id: https://develop.svn.wordpress.org/trunk@2379 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2005-02-25 15:50:55 +00:00
parent b06afb7b33
commit f0b153775a
1 changed files with 7 additions and 4 deletions

View File

@ -46,11 +46,10 @@ function get_category_link($category_id) {
return apply_filters('category_link', $catlink, $category_id);
}
function the_category($separator = '', $parents='') {
function get_the_category_list($separator = '', $parents='') {
$categories = get_the_category();
if (empty($categories)) {
_e('Uncategorized');
return;
return apply_filters('the_category', __('Uncategorized'), $separator, $parents);
}
$thelist = '';
@ -101,7 +100,11 @@ function the_category($separator = '', $parents='') {
++$i;
}
}
echo apply_filters('the_category', $thelist, $separator, $parents);
return apply_filters('the_category', $thelist, $separator, $parents);
}
function the_category($separator = '', $parents='') {
echo get_the_category_list($separator, $parents);
}
function get_the_category_by_ID($cat_ID) {