1,主页只显示主分类。
Use depth =1 so show only the parents.
<?php wp_list_categories('depth=1'); ?>
2,获取当前分类id
在循环中使用
$current_category = single_cat_title("", false);
3,在循环外 在post页面获取分类
<?php global $post; $categories = get_the_category($post->ID); var_dump($categories); ?>