我使用吹码而不是我的菜单
<?php wp_list_categories('title_li=&depth=4&orderby=id'); ?>
我想从wp_list_categories结果中删除一个特殊类别。除了菜单栏之外,我还将该类别用于其他工作。
请帮帮我。
答案 0 :(得分:1)
使用exclude
参数。
http://codex.wordpress.org/Template_Tags/wp_list_categories#Include_or_Exclude_Categories
<?php wp_list_categories('title_li=&depth=4&orderby=id&exclude=cat_id'); ?>
将cat_id
替换为您要排除的类别的ID。如果有多个,请用逗号分隔每个ID。