0

我想排除下面代码中调用的技能类型之一,这可能吗?

<ul>
    <li><a href="#" class="all active"><?php _e('All', 'framework'); ?></a><span>/</span></li>
    <?php 
        wp_list_categories(array(
            'title_li' => '', 
            'taxonomy' => 'skill-type', 
            'walker' => new Portfolio_Walker(),
            'show_option_none' => ''
        ));
    ?>
</ul>
4

1 回答 1

1

你检查过文档吗?

您可以使用 exclude 参数定义以逗号分隔的术语 ID 列表:

<?php 
    wp_list_categories(array(
        'title_li' => '', 
        'taxonomy' => 'skill-type',
        'exclude' => '1,2,3,4', //Whatever IDs of the terms you want to exclude
        'walker' => new Portfolio_Walker(),
        'show_option_none' => ''
    ));
?>
于 2012-09-27T19:37:03.640 回答