Skip to content

Instantly share code, notes, and snippets.

@DavidWells
Created February 5, 2014 01:33
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 DavidWells/8815940 to your computer and use it in GitHub Desktop.
Save DavidWells/8815940 to your computer and use it in GitHub Desktop.
Genesis fix take two
<?php
add_action( 'template_redirect', 'child_conditional_actions' );
function child_conditional_actions() {
if( 'landing-page' == get_post_type() ) {
remove_filter( 'wp_title', 'genesis_doctitle_wrap', 20 );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment