我想为我的wordpress页面的代码寻求一些帮助。我只想在公文包页面上显示当前的公文包类别。我使用了这段代码,但它显示了“6”父级的所有投资组合类别。非常感谢。
<?php
$args = array(
\'hierarchical\' => 1,
\'taxonomy\' => \'portfolio_category\',
\'hide_empty\' => 0,
\'parent\' => 6,
);
$categories = get_categories($args);
foreach($categories as $category) {
echo \'<a href="\' . get_category_link($category->cat_ID) . \'" title="\' . $category->name . \'">\' . $category->name . \'</a><br>\';
}
?>