wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



dropdown_categories › WordPress Function

Depuis0.71
Dépréciée2.6.0
dropdown_categories ( $default_category = 0, $category_parent = 0, $popular_ids = array() )
Paramètres: (3)
  • (int) $default_category Unused.
    Requis: Non
    Défaut:
  • (int) $category_parent Unused.
    Requis: Non
    Défaut:
  • (array) $popular_ids Unused.
    Requis: Non
    Défaut: array()
Voir:
Défini(e) dans:
Codex:

Legacy function used to generate the categories checklist control.



Source

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 );
}