尝试自定义wordpress下拉类别

时间:2013-11-21 06:10:18

标签: php wordpress

我在如何在wp_dropdown_categories中显示我想要的类别时遇到了一些问题。

这是下拉图片 -

http://i255.photobucket.com/albums/hh140/testament1234/customizeddropdown_zps8d2fe3c7.png

以下是下拉列表的代码 -

HTML:

<?php wp_dropdown_categories( $args ); ?> 

JS:

<script type="text/javascript">
var dropdown = document.getElementById("cat");
function onCatChange() {
    if ( dropdown.options[dropdown.selectedIndex].value > 0 ) {
        location.href = "<?php echo get_option('home');
?>/?cat="+dropdown.options[dropdown.selectedIndex].value;
    }
}
dropdown.onchange = onCatChange;
</script>

我尝试将此代码放在我的functions.php中并自定义它,但它似乎不起作用。

<?php $args = array(
'show_option_all'    => '',
'show_option_none'   => '',
'orderby'            => 'ID', 
'order'              => 'ASC',
'show_count'         => 0,
'hide_empty'         => 1, 
'child_of'           => 0,
'exclude'            => '',
'echo'               => 1,
'selected'           => 0,
'hierarchical'       => 0, 
'name'               => 'cat',
'id'                 => '',
'class'              => 'postform',
'depth'              => 0,
'tab_index'          => 0,
'taxonomy'           => 'category',
'hide_if_empty'      => false,
    'walker'             => ''
); ?>

1 个答案:

答案 0 :(得分:2)

为此,我们在wp_dropdown_categories的$ arg中排除了参数。 只需在$ args数组中的exclude参数中给出排除类别ID,如下所示,

'exclude' => '0,1'

这里0为未分类&amp; 1是特色产品。