Wordpress多个类别显示与自定义链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress多个类别显示与自定义链接相关的知识,希望对你有一定的参考价值。
我正在使用<?php the_category(); ?>
来显示我的帖子的类别。
它显示但我的问题是它产生的固定链接。
类别链接例如:http://samplesite.com/category/funpage/
我想要的是删除链接中的类别,只产生:http://samplesite.com/funpage/
另外,我正在使用custom post type UI
创建帖子。
有人可以帮我吗?
答案
您可以使用get_the_category()
函数并获取该帖子的所有类别并使用循环显示。
<?php
foreach((get_the_category()) as $category) {
?>
<a href='url you want to pass add here '><?php echo $category->name; ?></a>
<?php
}
?>
以上是关于Wordpress多个类别显示与自定义链接的主要内容,如果未能解决你的问题,请参考以下文章