wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_dropdown_cats is deprecated since version 3.0.0!
Alternative: wp_dropdown_categories()
Alternative: wp_dropdown_categories()
wp_dropdown_cats › WordPress Function
Since1.2.0
Deprecated3.0.0
› wp_dropdown_cats ( $current_cat = 0, $current_parent = 0, $category_parent = 0, $level = 0, $categories = 0 )
Parameters: (5) |
|
See: | |
Returns: |
|
Defined at: |
|
Codex: |
Legacy function used for generating a categories drop-down control.
Related Functions: dropdown_cats, wp_dropdown_pages, wp_dropdown_categories, wp_dropdown_users, wp_dropdown_roles
Source
function wp_dropdown_cats( $current_cat = 0, $current_parent = 0, $category_parent = 0, $level = 0, $categories = 0 ) { _deprecated_function( __FUNCTION__, '3.0.0', 'wp_dropdown_categories()' ); if (!$categories ) $categories = get_categories( array('hide_empty' => 0) ); if ( $categories ) { foreach ( $categories as $category ) { if ( $current_cat != $category->term_id && $category_parent == $category->parent) { $pad = str_repeat( '– ', $level ); $category->name = esc_html( $category->name ); echo "\n\t<option value='$category->term_id'"; if ( $current_parent == $category->term_id ) echo " selected='selected'"; echo ">$pad$category->name</option>"; wp_dropdown_cats( $current_cat, $current_parent, $category->term_id, $level +1, $categories ); } } } else { return false; } }