Wordpress - 尝试获取顶级父类别名称并将其设为链接
类别的结构为
欧洲>东欧>波兰
在这个例子中,我想获得欧洲的猫名,并将其作为欧洲猫页的链接。
无论我尝试什么,我似乎都无法获得最顶级的类别。这是在自定义QP查询
中执行的答案 0 :(得分:1)
你去吧
<?php
$args = array(
'orderby' => 'name',
'parent' => 0
);
$categories = get_categories( $args );
foreach ( $categories as $category ) {
echo '<a href="' . get_category_link( $category->term_id ) . '">' . $category->name . '</a><br/>';
}
?>
<?php
$args = array(
'type' => 'post',
'orderby' => 'term_group',
'hide_empty' => 0,
'hierarchical' => 0,
'parent' => 0,
'taxonomy' => '..if you are using a taxonomy instead of a category'
);
get_categories( $args );
?>