I have a hierarchical custom taxonomy that I add terms to programatically using the following code in a loop:
-- SNIP --
$args = array(
\'description\'=> \'\',
\'slug\' => str_replace(\' \',\'-\',preg_replace(\'/[^\\00-\\255]+/u\', \'\', $term)),
\'parent\' => $parent
);
$term_id = wp_insert_term(
$term,
\'widgets\',
$args
);
-- SNIP --
就在所需的层次结构中添加小部件术语而言,这是可行的,但是,在admin中的分类管理页面上,有一些非常奇怪的行为。列表(2)中只显示顶级术语,尽管它表示找到了28个项目,并且第2页有分页链接,但没有显示任何内容。
如果我删除顶级术语,第二级将显示在列表中,等等。
如果您有任何关于为什么会发生这种情况以及如何解决的想法,我们将不胜感激。