从the_content中提取标题

时间:2016-04-08 08:06:58

标签: php wordpress

我在内容中获得帖子标题。代码“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>

第二个代码正在生成标题两次。

1 个答案:

答案 0 :(得分:0)

  1. 确保内容编辑器本身没有任何内容。
  2. 找到内容的模板,包括content-page.php,content-single.php,content.php或类似内容,并检查那些重复的the_title()函数。
  3. 检查标题并确保他们拥有相同的课程并尝试在您的主题中搜索其中一个。