我想在我的{post-type} -single.php页面中显示我的自定义帖子类型的第一类。这是我的代码:
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post(); ?>
<div class="breadcrumb main">
<a href="<?php bloginfo('url'); ?>">Home</a> > <?php the_category( ', ' ); ?> > <?php the_title();?>
</div>
<?php } // end while
} // end if
?>
&#13;