php 带有分类的自定义帖子类型中单个项目的面包屑

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 带有分类的自定义帖子类型中单个项目的面包屑相关的知识,希望对你有一定的参考价值。


<?php
// template name:  single-recipesindex.php
// URL: http://165.227.91.177/index.php/recipesindex/test-9/
// custom post type: recipesindex
// taxonomy: recipes


global $post;

/*
echo '<pre>' ;
print_r($post) ;
echo '</pre>';
*/

$category = get_the_category( $post->ID );
// echo '<h2>POST ID: ' . $post->ID . '</h2>' ;

// get single category term for this taxonomy
$terms = get_the_terms( $post->ID , 'recipes' );
echo 'Taxonomy Category: ' .  $terms[0]->name ;

/*
echo '<pre>' ;
print_r($terms) ;
echo '</pre>';
*/


// Get all terms(categories) in this taxonomy
//foreach ( $terms as $term ) {
//	echo $term->name;
//}


?>


<div id="recipes_breadcrumbs">
	<a href="<?php echo site_url(); ?>/index.php/recipes/">RECIPES</a> > <a href="<?php echo site_url() .'/index.php/recipes/' . $terms[0]->slug .'/' ;   ?>"><?php echo $terms[0]->name ; ?></a> > <?php echo $post->post_title; ?>
</div>


OUTPUT:

RECIPES > Drinks & Cocktails > Recipe test 9


以上是关于php 带有分类的自定义帖子类型中单个项目的面包屑的主要内容,如果未能解决你的问题,请参考以下文章

php 具有自定义分类类别的自定义帖子类型

php 创建具有自定义分类的自定义帖子类型

仅显示特定自定义帖子类型的自定义分类计数

无法获取自定义分类存档页面以显示帖子

自定义帖子类型的单个帖子模板覆盖

WordPress中具有自定义帖子类型的单个页面的层次结构