jon-b
8/17/2014 - 11:09 PM

template-landing.php

<?php

// Remove 'site-inner' from structural wraps
add_theme_support( 'genesis-structural-wraps', array( 'header', 'footer' ) );

/**
 * Landing Content
 * 
 */
function be_landing_content() {
	// do stuff here
}
add_action( 'be_page_content', 'be_landing_content' );

// Build the site, replaces genesis()
get_header();
do_action( 'be_page_content' );
get_footer();