如何在wordpress中显示第一类自定义帖子类型?

时间:2017-12-16 19:52:13

标签: php wordpress

我想在我的{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;
&#13;
&#13;

0 个答案:

没有答案