summaryrefslogtreecommitdiffstats
path: root/wp-includes/template-loader.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-03-26 11:04:22 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-03-26 11:04:22 +0000
commit6b2942866a251bb84a81cb35811ee9a1d55a8d26 (patch)
tree09b245f77ee6eaf5856b00b0e2e7f97bdb3550d8 /wp-includes/template-loader.php
parent2e96b99ceb195735a641e299f3209840cc101052 (diff)
downloadwordpress-mu-6b2942866a251bb84a81cb35811ee9a1d55a8d26.tar.gz
wordpress-mu-6b2942866a251bb84a81cb35811ee9a1d55a8d26.tar.xz
wordpress-mu-6b2942866a251bb84a81cb35811ee9a1d55a8d26.zip
WP Merge to rev 5109
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@934 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-includes/template-loader.php')
-rw-r--r--wp-includes/template-loader.php38
1 files changed, 19 insertions, 19 deletions
diff --git a/wp-includes/template-loader.php b/wp-includes/template-loader.php
index 8b44d89..7b654b8 100644
--- a/wp-includes/template-loader.php
+++ b/wp-includes/template-loader.php
@@ -3,70 +3,70 @@ if ( defined('WP_USE_THEMES') && constant('WP_USE_THEMES') ) {
do_action('template_redirect');
if ( is_robots() ) {
do_action('do_robots');
- exit;
+ return;
} else if ( is_feed() ) {
do_feed();
- exit;
+ return;
} else if ( is_trackback() ) {
include(ABSPATH . '/wp-trackback.php');
- exit;
+ return;
} else if ( is_404() && $template = get_404_template() ) {
include($template);
- exit;
+ return;
} else if ( is_search() && $template = get_search_template() ) {
include($template);
- exit;
+ return;
} else if ( is_home() && $template = get_home_template() ) {
include($template);
- exit;
+ return;
} else if ( is_attachment() && $template = get_attachment_template() ) {
include($template);
- exit;
+ return;
} else if ( is_single() && $template = get_single_template() ) {
if ( is_attachment() )
add_filter('the_content', 'prepend_attachment');
include($template);
- exit;
+ return;
} else if ( is_page() && $template = get_page_template() ) {
if ( is_attachment() )
add_filter('the_content', 'prepend_attachment');
include($template);
- exit;
+ return;
} else if ( is_category() && $template = get_category_template()) {
include($template);
- exit;
+ return;
} else if ( is_author() && $template = get_author_template() ) {
include($template);
- exit;
+ return;
} else if ( is_date() && $template = get_date_template() ) {
include($template);
- exit;
+ return;
} else if ( is_archive() && $template = get_archive_template() ) {
include($template);
- exit;
+ return;
} else if ( is_comments_popup() && $template = get_comments_popup_template() ) {
include($template);
- exit;
+ return;
} else if ( is_paged() && $template = get_paged_template() ) {
include($template);
- exit;
+ return;
} else if ( file_exists(TEMPLATEPATH . "/index.php") ) {
if ( is_attachment() )
add_filter('the_content', 'prepend_attachment');
include(TEMPLATEPATH . "/index.php");
- exit;
+ return;
}
} else {
// Process feeds and trackbacks even if not using themes.
if ( is_robots() ) {
do_action('do_robots');
- exit;
+ return;
} else if ( is_feed() ) {
do_feed();
- exit;
+ return;
} else if ( is_trackback() ) {
include(ABSPATH . '/wp-trackback.php');
- exit;
+ return;
}
}