【发布时间】:2017-12-28 07:52:04
【问题描述】:
尝试使用 <?php the_category( ' ' ); ?> 从我的 wordpress 帖子中放入我的类别。
在循环html内
<a href='<?php the_permalink(); ?>'>
<section id="post-<?php the_ID(); ?>" class="..">
<div>
<?php the_category( ' ' ); ?>
<?php the_title( '<h1>', '</h1>' ); ?>
</div>
</section>
</a>
问题是类别 php 的部分 div 似乎被拉出链接(输出有部分外部链接代码。 没有类别代码它可以完美地工作。
【问题讨论】: