WordPress显示当前文章分类和父分类的链接 – WordPress 教程

2022年 10月 24日 发表评论
腾讯云正在大促:点击直达 阿里云超级红包:点击领取
免费/便宜/高性价比服务器汇总入口(已更新):点击这里了解

Wordpress显示当前文章分类和父分类的链接 – WordPress 教程
WordPress

当需要显示文章的父分类和当前分类链接时,我们可以使用这段代码:

$categories = get_the_category();echo '<ul>';echo '<li> Parent Category: ';foreach( $categories as $category ){     if($category->parent != 0){          $parent_category = get_term( $category->parent );          echo '<a href="' . esc_url( get_category_link($parent_category->term_id)) . '">' . esc_html($parent_category->name) . ' </a>';          break;     }}echo '</li>';echo '<li>Subcategory: ';foreach( $categories as $category ){     if($category->parent != 0){          echo '<a href="' . esc_url( get_category_link($category->term_id)) . '">' . esc_html($category->name) . ' </a>';     }}echo '</li></ul>';

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: