如何在WP Post Template插件中默认检查帖子的自定义模板

时间:2017-06-09 07:12:55

标签: wordpress wordpress-theming

我正在使用WP Post Template for Post Template

  

我有两个模板

  • 默认模板(默认选中)
  • 属性
  

我想要

  • 默认模板
  • 属性(默认选择)

1 个答案:

答案 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