如果您指的是职位类型中的类别post
(博客)那么这就可以做到:
下拉列表:wp_dropdown_categories()
对于列表:wp_list_categories()
child_of
仅显示属于此参数标识的类别的子类别。此参数没有默认值。
<?php
// Put the parent category ID in place of 9999
// for a drop-down, does not need <select></select> wrapper
wp_dropdown_categories(\'child_of=9999\');
// for a list, does need <ul></ul> wrapper
wp_list_categories(\'child_of=9999\');
?>