创建首页。主题根目录或页面模板文件夹中的php文件。
下面是一个来自Eden主题的自动精简示例:
<?php
/**
* Template Name: Front Page
*
* @package Edin
*/
get_header(); ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( \'content\', \'hero\' ); ?>
<?php endwhile; ?>
<?php rewind_posts(); ?>
<?php edin_featured_pages(); ?>
<?php get_sidebar( \'front-page\' ); ?>
<?php get_footer(); ?>