我正在使用WP Post Template for Post Template
我有两个模板
我想要
答案 0 :(得分:0)
您需要将代码更改为page.php文件。在同一个文件中找到以下代码。
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/page/content', 'page' );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile; // End of the loop.
请使用
更改get_template_part( 'template-parts/page/content', 'page' );
这一行
get_template_part( 'inc/template', 'property' );
为此,您需要将模板文件名设置为template-property.php