php WordPress |获取第一个类别名称,slug和ID
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WordPress |获取第一个类别名称,slug和ID相关的知识,希望对你有一定的参考价值。
// in the loop
$category = get_the_category();
$currentcat = $category[0]->cat_ID;
$currentcatname = $category[0]->cat_name;
$currentcatslug = get_category_link( $currentcat );
// outside the loop
global $post;
$categories = get_the_category($post->ID);
$currentcat = $category[0]->cat_ID;
$currentcatname = $category[0]->cat_name;
$currentcatslug = get_category_link( $currentcat );
以上是关于php WordPress |获取第一个类别名称,slug和ID的主要内容,如果未能解决你的问题,请参考以下文章
PHP Wordpress:获取当前的类别ID和名称
PHP Wordpress - 获取当前类别名称和/或ID
Wordpress-获取当前类别名称和/或ID
Wordpress 按税收条款获取帖子-税收条款是页面蛞蝓
如何在数组中列出 wordpress 类别 ID 和名称?
PHP Wordpress:显示没有链接的类别名称