我一直在研究这个问题几个小时,不知道我在忽视或不理解。我正在尝试使用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我的文件结构图片。
答案 0 :(得分:0)
您可以使用简单的PHP include,而不是使用WordPress逻辑
<?php include('template-parts/partial-banner.php'); ?>