Last active
July 30, 2016 22:24
-
-
Save billerickson/2166998 to your computer and use it in GitHub Desktop.
Use archive.php for home, archives and search
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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