WordPress如何获取文章分类名称/ID/别名

在我们实际开发wordpress主题过程中,经常用到获取分类名称、分类ID或者是分类别名之类的数据。

下面悟空搜分享几种获取文章所属分类、ID、别名的WordPress教程。

一、wordpree自带函数:


1
2
//获取分类名称和分类链接
<?php the_category(); ?>

上面函数 the_category(); 函数能获取到分类链接与分类名称,如果我们不需要用到带分类链接的分类名称,以下几种获取方式便可以用到。

通用页面:


1
2
$category = get_the_category(); //the_category()是文章当前所属分类函数,把分类信息传递给变量$category
echo $category[0]->cat_ID; //输入数组中的分类ID

文章页面


1
2
3
4
<?php
foreach((get_the_category()) as $category){
echo $category->cat_name;
}?>

分类页面:


1
<?php single_cat_title(); ?>

在主题functions.php添加自定义函数,然后再调用这个函数。


1
2
3
4
function get_current_category_id() {
$current_category = single_cat_title('', false);//获得当前分类目录名称
return get_cat_ID($current_category);//获得当前分类目录 ID
}

使用方法:


1
<?php echo get_current_category_id(); ?>

函数返回值参考:


1
2
3
4
5
6
7
8
9
10
11
cat_ID 分类ID

cat_name 分类名称

category_nicename 分类别名

category_description 分类描述

category_parent 父分类ID

category_count 分类下的文章数量

扫码关注wp悟空搜

精选优质免费WordPress主题模板,分享最新WordPress实用建站教程!

记住我们的网址:ztJun.com

原文链接:https://xiaohost.com/1174.html,转载请注明出处。
0

评论0

请先