From 6943482d3b33fc636edfe4500f2393c7be2b13b2 Mon Sep 17 00:00:00 2001 From: matt Date: Mon, 21 Apr 2008 06:28:50 +0000 Subject: [PATCH] For some reason taxonomy pages also return is_home, so we need to put this check first. git-svn-id: http://svn.automattic.com/wordpress/trunk@7754 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/template-loader.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/template-loader.php b/wp-includes/template-loader.php index e2a24f204..9fd4ffe51 100644 --- a/wp-includes/template-loader.php +++ b/wp-includes/template-loader.php @@ -20,6 +20,9 @@ if ( defined('WP_USE_THEMES') && constant('WP_USE_THEMES') ) { } else if ( is_search() && $template = get_search_template() ) { include($template); return; + } else if ( is_tax() && $template = get_taxonomy_template()) { + include($template); + return; } else if ( is_home() && $template = get_home_template() ) { include($template); return; @@ -39,9 +42,6 @@ if ( defined('WP_USE_THEMES') && constant('WP_USE_THEMES') ) { } else if ( is_tag() && $template = get_tag_template()) { include($template); return; - } else if ( is_tax() && $template = get_taxonomy_template()) { - include($template); - return; } else if ( is_author() && $template = get_author_template() ) { include($template); return;