Category listing speedups. see #3985

git-svn-id: https://develop.svn.wordpress.org/trunk@5179 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2007-04-04 22:32:24 +00:00
parent 93cdc6deac
commit c81341f3ee
1 changed files with 5 additions and 0 deletions

View File

@ -264,12 +264,17 @@ function &_get_cat_children($category_id, $categories) {
$category_list = array();
$children = _get_category_hierarchy();
if ( ( 0 != $category_id ) && ! isset($children[$category_id]) )
return array();
foreach ( $categories as $category ) {
if ( $category->cat_ID == $category_id )
continue;
if ( $category->category_parent == $category_id ) {
$category_list[] = $category;
if ( !isset($children[$category->cat_ID]) )
continue;