Skip to content

Instantly share code, notes, and snippets.

@adambradford
Created March 21, 2018 16:08
Show Gist options
  • Save adambradford/6267b8ce5cdebfcb21bbd35df0e19165 to your computer and use it in GitHub Desktop.
Save adambradford/6267b8ce5cdebfcb21bbd35df0e19165 to your computer and use it in GitHub Desktop.
Add an After Footer area in a WordPress site built with the Genesis Framework
<?php
//* Add this to your functions.php file. Do NOT include the opening php tag
//* Add After Footer area
add_action( 'genesis_after_footer', 'include_after_footer' );
function include_after_footer() {
require(CHILD_DIR.'/after-footer.php');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment