We don't need get_categories() to do a hierarchical sort anymore. The walker takes care of it.

git-svn-id: http://svn.automattic.com/wordpress/trunk@7729 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-04-17 21:21:13 +00:00
parent 3389df53f2
commit 84bd7d6a00
1 changed files with 4 additions and 0 deletions

View File

@ -232,7 +232,9 @@ function wp_dropdown_categories($args = '') {
if ( (int) $tab_index > 0 )
$tab_index_attribute = " tabindex=\"$tab_index\"";
$r['hierarchical'] = 0;
$categories = get_categories($r);
$r['hierarchical'] = $hierarchical;
$output = '';
if ( ! empty($categories) ) {
@ -289,7 +291,9 @@ function wp_list_categories($args = '') {
extract( $r );
$r['hierarchical'] = 0;
$categories = get_categories($r);
$r['hierarchical'] = $hierarchical;
$output = '';
if ( $title_li && 'list' == $style )