2005-06-11 01:15:13 +02:00
|
|
|
<?php
|
2007-12-24 08:09:36 +01:00
|
|
|
/**
|
|
|
|
* Loads the correct template based on the visitor's url
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
2005-06-11 01:15:13 +02:00
|
|
|
if ( defined('WP_USE_THEMES') && constant('WP_USE_THEMES') ) {
|
|
|
|
do_action('template_redirect');
|
2006-05-23 00:06:06 +02:00
|
|
|
if ( is_robots() ) {
|
|
|
|
do_action('do_robots');
|
2007-03-26 01:39:14 +02:00
|
|
|
return;
|
2006-05-23 00:06:06 +02:00
|
|
|
} else if ( is_feed() ) {
|
2006-03-12 23:57:00 +01:00
|
|
|
do_feed();
|
2007-03-26 01:39:14 +02:00
|
|
|
return;
|
2005-06-11 01:15:13 +02:00
|
|
|
} else if ( is_trackback() ) {
|
2007-07-27 23:28:01 +02:00
|
|
|
include(ABSPATH . 'wp-trackback.php');
|
2007-03-26 01:39:14 +02:00
|
|
|
return;
|
2006-01-06 02:09:16 +01:00
|
|
|
} else if ( is_404() && $template = get_404_template() ) {
|
|
|
|
include($template);
|
2007-03-26 01:39:14 +02:00
|
|
|
return;
|
2006-01-06 02:09:16 +01:00
|
|
|
} else if ( is_search() && $template = get_search_template() ) {
|
|
|
|
include($template);
|
2007-03-26 01:39:14 +02:00
|
|
|
return;
|
2006-01-06 02:09:16 +01:00
|
|
|
} else if ( is_home() && $template = get_home_template() ) {
|
|
|
|
include($template);
|
2007-03-26 01:39:14 +02:00
|
|
|
return;
|
2006-01-06 02:09:16 +01:00
|
|
|
} else if ( is_attachment() && $template = get_attachment_template() ) {
|
|
|
|
include($template);
|
2007-03-26 01:39:14 +02:00
|
|
|
return;
|
2006-01-06 02:09:16 +01:00
|
|
|
} else if ( is_single() && $template = get_single_template() ) {
|
2005-11-15 23:55:24 +01:00
|
|
|
if ( is_attachment() )
|
|
|
|
add_filter('the_content', 'prepend_attachment');
|
2006-01-06 02:09:16 +01:00
|
|
|
include($template);
|
2007-03-26 01:39:14 +02:00
|
|
|
return;
|
2006-01-06 02:09:16 +01:00
|
|
|
} else if ( is_page() && $template = get_page_template() ) {
|
2005-11-15 23:55:24 +01:00
|
|
|
if ( is_attachment() )
|
|
|
|
add_filter('the_content', 'prepend_attachment');
|
2006-01-06 02:09:16 +01:00
|
|
|
include($template);
|
2007-03-26 01:39:14 +02:00
|
|
|
return;
|
2006-01-06 02:09:16 +01:00
|
|
|
} else if ( is_category() && $template = get_category_template()) {
|
|
|
|
include($template);
|
2007-03-26 01:39:14 +02:00
|
|
|
return;
|
2007-03-31 08:16:12 +02:00
|
|
|
} else if ( is_tag() && $template = get_tag_template()) {
|
|
|
|
include($template);
|
|
|
|
return;
|
2006-01-06 02:09:16 +01:00
|
|
|
} else if ( is_author() && $template = get_author_template() ) {
|
|
|
|
include($template);
|
2007-03-26 01:39:14 +02:00
|
|
|
return;
|
2006-01-06 02:09:16 +01:00
|
|
|
} else if ( is_date() && $template = get_date_template() ) {
|
|
|
|
include($template);
|
2007-03-26 01:39:14 +02:00
|
|
|
return;
|
2006-01-06 02:09:16 +01:00
|
|
|
} else if ( is_archive() && $template = get_archive_template() ) {
|
|
|
|
include($template);
|
2007-03-26 01:39:14 +02:00
|
|
|
return;
|
2006-01-06 02:09:16 +01:00
|
|
|
} else if ( is_comments_popup() && $template = get_comments_popup_template() ) {
|
|
|
|
include($template);
|
2007-03-26 01:39:14 +02:00
|
|
|
return;
|
2006-01-06 02:09:16 +01:00
|
|
|
} else if ( is_paged() && $template = get_paged_template() ) {
|
|
|
|
include($template);
|
2007-03-26 01:39:14 +02:00
|
|
|
return;
|
2005-06-11 01:15:13 +02:00
|
|
|
} else if ( file_exists(TEMPLATEPATH . "/index.php") ) {
|
2005-11-21 03:08:59 +01:00
|
|
|
if ( is_attachment() )
|
|
|
|
add_filter('the_content', 'prepend_attachment');
|
2005-06-11 01:15:13 +02:00
|
|
|
include(TEMPLATEPATH . "/index.php");
|
2007-03-26 01:39:14 +02:00
|
|
|
return;
|
2005-06-11 01:15:13 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Process feeds and trackbacks even if not using themes.
|
2006-05-23 00:06:06 +02:00
|
|
|
if ( is_robots() ) {
|
|
|
|
do_action('do_robots');
|
2007-03-26 01:39:14 +02:00
|
|
|
return;
|
2006-05-23 00:06:06 +02:00
|
|
|
} else if ( is_feed() ) {
|
2006-03-12 23:57:00 +01:00
|
|
|
do_feed();
|
2007-03-26 01:39:14 +02:00
|
|
|
return;
|
2005-06-11 01:15:13 +02:00
|
|
|
} else if ( is_trackback() ) {
|
2007-07-27 23:28:01 +02:00
|
|
|
include(ABSPATH . 'wp-trackback.php');
|
2007-03-26 01:39:14 +02:00
|
|
|
return;
|
2005-06-11 01:15:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-06 02:09:16 +01:00
|
|
|
?>
|