dropdown_cats

函数
dropdown_cats ( $optionall = 1, $all = 'All', $orderby = 'ID', $order = 'asc', $show_last_update = 0, $show_count = 0, $hide_empty = 1, $optionnone = false, $selected = 0, $exclude = 0 )
参数
  • (int) $optionall
    Required:
    Default: 1
  • (string) $all
    Required:
    Default: 'All'
  • (string) $orderby
    Required:
    Default: 'ID'
  • (string) $order
    Required:
    Default: 'asc'
  • (int) $show_last_update
    Required:
  • (int) $show_count
    Required:
  • (int) $hide_empty
    Required:
    Default: 1
  • (bool) $optionnone
    Required:
    Default: false
  • (int) $selected
    Required:
  • (int) $exclude
    Required:
返回值
  • (string)
相关
  • wp_dropdown_categories()
定义位置
相关方法
wp_dropdown_catsdropdown_categorieswp_dropdown_categorieswp_dropdown_pagesdropdown_link_categories
引入
0.71
弃用
2.1.0

dropdown_cats: 这个函数以HTML形式生成一个文章类别的下拉列表。它与dropdown_categories类似,但专门用于文章。

已弃用的生成类别下拉的方法。

function dropdown_cats($optionall = 1, $all = 'All', $orderby = 'ID', $order = 'asc',
		$show_last_update = 0, $show_count = 0, $hide_empty = 1, $optionnone = false,
		$selected = 0, $exclude = 0) {
	_deprecated_function( __FUNCTION__, '2.1.0', 'wp_dropdown_categories()' );

	$show_option_all = '';
	if ( $optionall )
		$show_option_all = $all;

	$show_option_none = '';
	if ( $optionnone )
		$show_option_none = __('None');

	$vars = compact('show_option_all', 'show_option_none', 'orderby', 'order',
					'show_last_update', 'show_count', 'hide_empty', 'selected', 'exclude');
	$query = add_query_arg($vars, '');
	return wp_dropdown_categories($query);
}

常见问题

FAQs
查看更多 >