Skip to content

Instantly share code, notes, and snippets.

@jdspiral
Last active August 29, 2015 14:16
Show Gist options
  • Save jdspiral/e56bdcc133abac049a62 to your computer and use it in GitHub Desktop.
Save jdspiral/e56bdcc133abac049a62 to your computer and use it in GitHub Desktop.
Remove Genesis Archives and Blog Templates
// Remove Genesis Archives and Blog Templates
function jds_remove_genesis_page_templates( $page_templates ) {
unset( $page_templates['page_archive.php'] );
unset( $page_templates['page_blog.php'] );
return $page_templates;
}
add_filter( 'theme_page_templates', 'jds_remove_genesis_page_templates' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment