在我们实际开发wordpress主题过程中,经常用到获取分类名称、分类ID或者是分类别名之类的数据。
下面主题君分享几种获取文章所属分类、ID、别名的WordPress教程。
一、wordpree自带函数:
//获取分类名称和分类链接<?php the_category(); ?>
上面函数 the_category(); 函数能获取到分类链接与分类名称,如果我们不需要用到带分类链接的分类名称,以下几种获取方式便可以用到。
通用页面:
$category = get_the_category();//the_category()是文章当前所属分类函数,把分类信息传递给变量$categoryecho $category[0]->cat_ID; //输入数组中的分类ID
文章页面
<?phpforeach((get_the_category())as $category){echo $category->cat_name;}?>
分类页面:
<?php single_cat_title();?>
在主题functions.php添加自定义函数,然后再调用这个函数。
function get_current_category_id(){$current_category = single_cat_title(\\,false);//获得当前分类目录名称return get_cat_ID($current_category);//获得当前分类目录 ID}
使用方法:
<?php echo get_current_category_id();?>
函数返回值参考:
cat_ID 分类IDcat_name分类名称category_nicename 分类别名category_description 分类描述category_parent 父分类IDcategory_count分类下的文章数量
精选优质免费WordPress主题模板,分享最新WordPress实用建站教程!
暂无评论内容