get_template_part无法处理wordpress

时间:2017-06-29 21:41:22

标签: php wordpress

我一直在研究这个问题几个小时,不知道我在忽视或不理解。我正在尝试使用get_template_part来调用另一个php文档。当我运行下面的代码时,div.content中没有任何内容。我不明白为什么要调用我的partial-banner.php。

前page.php文件

<?php get_header(); ?>

<div class="content">

   <?php while ( have_posts() ) : the_post(); ?>
       <?php get_template_part( 'template-parts/partial', 'banner' ); ?>
   <?php endwhile; // end of the loop. ?>

</div>

<?php get_footer(); ?>

局部banner.php

<section class="banner">
    <h1>Does this work</h1>
</section>

here's我的文件结构图片。

1 个答案:

答案 0 :(得分:0)

您可以使用简单的PHP include,而不是使用WordPress逻辑

<?php include('template-parts/partial-banner.php'); ?>