1 2 3 4 5 6 7
| if( have_posts() ) { while( have_posts() ) { the_post(); $category = get_the_category(); //获取category $parents = $category[0]->category_parent; //获得category 下的parent数据库内容 $type = $category[0]->term_id; //获取分类ID $parent = get_cat_name($category[0]->category_parent); //显示相应parent的category的名称
|
通过获得数据库的这些内容,可以更好的对样式进行操作