Deprecated Deprecated
This function has been deprecated. Use wp_category_checklist() instead.
Summery Summery
Legacy function used to generate the categories checklist control.
Syntax Syntax
Parameters Parameters
- $default
-
(Required) Unused.
- $parent
-
(Required) Unused.
- $popular_ids
-
(Optional) Unused.
Default value: array()
Source Source
File: wp-admin/includes/deprecated.php
function dropdown_categories( $default = 0, $parent = 0, $popular_ids = array() ) { _deprecated_function( __FUNCTION__, '2.6.0', 'wp_category_checklist()' ); global $post_ID; wp_category_checklist( $post_ID ); }
Advertisement
Changelog Changelog
Version | Description |
---|---|
2.6.0 | Use wp_category_checklist() |
0.71 | Introduced. |