Re-index categories in get_the_category(). Props greuben. Fixes #15442

git-svn-id: http://svn.automattic.com/wordpress/trunk@16888 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
scribu 2010-12-12 20:32:29 +00:00
parent ccd9189ca4
commit 244ad8dd17
1 changed files with 4 additions and 1 deletions

View File

@ -67,11 +67,14 @@ function get_the_category( $id = false ) {
$categories = get_the_terms( $id, 'category' );
if ( ! $categories )
$categories = array();
$categories = array_values( $categories );
foreach ( array_keys( $categories ) as $key ) {
_make_cat_compat( $categories[$key] );
}
// Filter name is plural because we are return alot of categories not just one
// Filter name is plural because we return alot of categories not just one
return apply_filters( 'get_the_categories', $categories );
}