Use single template for home, archive, 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;
}
view raw functions.php hosted with ❤ by GitHub

Bill Erickson

Bill Erickson is the co-founder and lead developer at CultivateWP, a WordPress agency focusing on high performance sites for web publishers.

About Me
Ready to upgrade your website?

I build custom WordPress websites that look great and are easy to manage.

Let's Talk