我用自定义分类法设置了自定义的帖子类型。对于这个自定义分类法,我试图找出如何呼应其中父类别和当前子类别的标题。
这是设置:
打印(注册的自定义邮件类型)
print\\u type(注册的自定义分类法)
打印(&L);注释卡(印刷类型分类法中的父类)
<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2>
<?php
$category = get_the_category();
echo $category[0]->cat_name;
?>
</h2>
<h3><?php echo get_category_parents(19, TRUE, \' / \'); ?><?php the_title(); ?></h3>
<p><?php the_excerpt(); ?></p>
<div id="workgrid" class="<?php the_ID(); ?>"><?php the_content(); ?></div>
<?php endwhile; endif; ?>
</div>
<!-- END CONTENT -->
<?php get_sidebar(\'prints\'); ?>
<div class="clear"></div>