记录日常点点滴滴,欢迎来到我的小站。

0%

获取WordPress的数据库内容

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的名称

通过获得数据库的这些内容,可以更好的对样式进行操作