dropdown_categories

函数
dropdown_categories ( $default_category = 0, $category_parent = 0, $popular_ids = array() )
参数
  • (int) $default_category Unused.
    Required:
  • (int) $category_parent Unused.
    Required:
  • (array) $popular_ids Unused.
    Required:
    Default: array()
相关
  • wp_category_checklist()
定义位置
相关方法
wp_dropdown_categoriesdropdown_link_categoriesdropdown_catswp_dropdown_catswp_dropdown_pages
引入
0.71
弃用
2.6.0

dropdown_categories: 这个函数以HTML形式生成一个类别的下拉列表。它通常用在WordPress网站的前端,让用户按类别过滤内容。

用于生成类别检查表控制的Legacy函数。

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

常见问题

FAQs
查看更多 >