WordPress中的不同页面具有相同的页眉和页脚

时间:2018-04-30 11:09:12

标签: wordpress header footer

在没有插件的WordPress中,是否可以为不同页面设置相同的页眉和页脚?如果有,怎么样?

1 个答案:

答案 0 :(得分:0)

使用get_header(); &安培; get_footer();在自定义模板上。

首先在主题根

上创建类似test.php的模板

然后粘贴此

        <?php
  /**
  * Template Name: Custom Post List
  */
  get_header(); ?>

  <div id="main-content" class="main-content">

  <?php
  if ( is_front_page() && twentyfourteen_has_featured_posts() ) {
    // Include the featured content template.
    get_template_part( 'featured-content' );
  }
 ?>

<div id="primary" class="content-area">
    <div id="content" class="site-content" role="main">

        <h1>Hello There</h1>

    </div><!-- #content -->
</div><!-- #primary -->
  </div><!-- #main-content -->

   <?php
   get_sidebar();
   get_footer();

然后在admin中创建页面并选择模板