wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



dropdown_categories › WordPress Function

Seit0.71
Veraltet2.6.0
dropdown_categories ( $default_category = 0, $category_parent = 0, $popular_ids = array() )
Parameter: (3)
  • (int) $default_category Unused.
    Erforderlich: Nein
    Standard:
  • (int) $category_parent Unused.
    Erforderlich: Nein
    Standard:
  • (array) $popular_ids Unused.
    Erforderlich: Nein
    Standard: array()
Siehe:
Definiert in:
Codex:

Legacy function used to generate the categories checklist control.



Quellcode

function dropdown_categories( $default_category = 0, $category_parent = 0, $popular_ids = array() ) {
	_deprecated_function( __FUNCTION__, '2.6.0', 'wp_category_checklist()' );
	global $post_ID;
	wp_category_checklist( $post_ID );
}