Skip to content

Instantly share code, notes, and snippets.

@reasonstousegenesis
Last active November 4, 2015 02:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save reasonstousegenesis/096b3de25510d4a32907 to your computer and use it in GitHub Desktop.
Save reasonstousegenesis/096b3de25510d4a32907 to your computer and use it in GitHub Desktop.
Remove the site header with Genesis
<?php
// Paste the code BELOW this line into your child theme functions.
/**
* Remove the site header with Genesis
*
* @author Reasons to Use Genesis
* @link http://reasonstousegenesis.com/rewrite-header/
*/
remove_action( 'genesis_header', 'genesis_header_markup_open', 5 );
remove_action( 'genesis_header', 'genesis_do_header' );
remove_action( 'genesis_header', 'genesis_header_markup_close', 15 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment