Files
Thuan Bui fd25f13a4f Initial
2018-06-26 11:09:22 +07:00

42 lines
877 B
PHP

<?php
/**
* Child Theme Library
*
* WARNING: This file is a part of the core Child Theme Library.
* DO NOT edit this file under any circumstances. Please use
* the functions.php file to make any theme modifications.
*
* Template Name: Full Width
*
* @package SEOThemes\ChildThemeLibrary\Views
* @link https://github.com/seothemes/child-theme-library
* @author Thuan Bui
* @copyright Copyright © 2018 Thuan Bui
* @license GPL-2.0+
*/
// If this file is called directly, abort.
if ( ! defined( 'ABSPATH' ) ) {
die;
}
// Remove default hero section.
remove_action( 'genesis_before_content_sidebar_wrap', 'genesis_starter_hero_section' );
// Get site-header.
get_header();
// Custom loop, remove all hooks except entry content.
if ( have_posts() ) :
the_post();
do_action( 'genesis_entry_content' );
endif;
// Get site-footer.
get_footer();