Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created November 4, 2014 18:29
Show Gist options
  • Select an option

  • Save billerickson/7605ab40e944f389677d to your computer and use it in GitHub Desktop.

Select an option

Save billerickson/7605ab40e944f389677d to your computer and use it in GitHub Desktop.
<?php
// Full Width Landing Page
function testing() { ?>
This should be full width…
<?php }
add_action ('be_content_area', 'testing');
// Remove 'site-inner' from structural wrap
add_theme_support( 'genesis-structural-wraps', array( 'header', 'footer-widgets', 'footer' ) );
// Build the page
get_header();
do_action( 'be_content_area' );
get_footer();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment