我在内容中获得帖子标题。代码“the_content”包括其中的内容标题。但我想将我的标题与内容分开。如何在php / wordpres中实现这一点。
我的当前代码:
<div class="content-holder">
<?php the_content(); ?>
</div>
我应该要什么:
<div class="content-holder">
<h1><?php the_title();?></h1>
<hr style="margin-top: 20px;"/>
<?php the_content(); ?>
</div>
第二个代码正在生成标题两次。
答案 0 :(得分:0)