wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



dropdown_categories › WordPress Function

Desde0.71
Obsoleto2.6.0
dropdown_categories ( $default_category = 0, $category_parent = 0, $popular_ids = array() )
Parâmetros: (3)
  • (int) $default_category Unused.
    Required: No
    Padrão:
  • (int) $category_parent Unused.
    Required: No
    Padrão:
  • (array) $popular_ids Unused.
    Required: No
    Padrão: array()
Ver:
Definido em:
Codex:

Legacy function used to generate the categories checklist control.



Fonte

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