在没有插件的WordPress中,是否可以为不同页面设置相同的页眉和页脚?如果有,怎么样?
答案 0 :(得分:0)
使用get_header(); &安培; get_footer();在自定义模板上。
然后粘贴此
<?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();