Skip to content

Instantly share code, notes, and snippets.

@billerickson
Last active July 30, 2016 22:24
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save billerickson/2166998 to your computer and use it in GitHub Desktop.
Save billerickson/2166998 to your computer and use it in GitHub Desktop.
Use archive.php for home, archives and search
<?php
add_filter( 'template_include', 'be_template_redirect' );
/**
* Template Redirect
* Use archive.php for blog (home.php), archives, and search
*
* @author Bill Erickson
* @link http://www.billerickson.net/code/use-single-template-for-home-archive-and-search/
*
* @param string, default template path
* @return string, modified template path
*
*/
function be_template_redirect( $template ) {
if ( is_home() || is_search() )
$template = get_query_template( 'archive' );
return $template;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment