2005-06-11 01:15:13 +02:00
|
|
|
<?php
|
|
|
|
if ( defined('WP_USE_THEMES') && constant('WP_USE_THEMES') ) {
|
|
|
|
do_action('template_redirect');
|
|
|
|
if ( is_feed() ) {
|
|
|
|
include(ABSPATH . '/wp-feed.php');
|
|
|
|
exit;
|
|
|
|
} else if ( is_trackback() ) {
|
|
|
|
include(ABSPATH . '/wp-trackback.php');
|
|
|
|
exit;
|
2006-01-06 02:09:16 +01:00
|
|
|
} else if ( is_404() && $template = get_404_template() ) {
|
|
|
|
include($template);
|
2005-06-11 01:15:13 +02:00
|
|
|
exit;
|
2006-01-06 02:09:16 +01:00
|
|
|
} else if ( is_search() && $template = get_search_template() ) {
|
|
|
|
include($template);
|
2005-06-11 01:15:13 +02:00
|
|
|
exit;
|
2006-01-06 02:09:16 +01:00
|
|
|
} else if ( is_home() && $template = get_home_template() ) {
|
|
|
|
include($template);
|
2005-06-11 01:15:13 +02:00
|
|
|
exit;
|
2006-01-06 02:09:16 +01:00
|
|
|
} else if ( is_attachment() && $template = get_attachment_template() ) {
|
|
|
|
include($template);
|
2005-10-20 22:48:32 +02:00
|
|
|
exit;
|
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);
|
2005-06-11 01:15:13 +02:00
|
|
|
exit;
|
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);
|
2005-06-11 01:15:13 +02:00
|
|
|
exit;
|
2006-01-06 02:09:16 +01:00
|
|
|
} else if ( is_category() && $template = get_category_template()) {
|
|
|
|
include($template);
|
2006-02-12 08:53:23 +01:00
|
|
|
exit;
|
2006-01-06 02:09:16 +01:00
|
|
|
} else if ( is_author() && $template = get_author_template() ) {
|
|
|
|
include($template);
|
2005-06-11 01:15:13 +02:00
|
|
|
exit;
|
2006-01-06 02:09:16 +01:00
|
|
|
} else if ( is_date() && $template = get_date_template() ) {
|
|
|
|
include($template);
|
2005-06-11 01:15:13 +02:00
|
|
|
exit;
|
2006-01-06 02:09:16 +01:00
|
|
|
} else if ( is_archive() && $template = get_archive_template() ) {
|
|
|
|
include($template);
|
2005-06-11 01:15:13 +02:00
|
|
|
exit;
|
2006-01-06 02:09:16 +01:00
|
|
|
} else if ( is_comments_popup() && $template = get_comments_popup_template() ) {
|
|
|
|
include($template);
|
2005-06-11 01:15:13 +02:00
|
|
|
exit;
|
2006-01-06 02:09:16 +01:00
|
|
|
} else if ( is_paged() && $template = get_paged_template() ) {
|
|
|
|
include($template);
|
2005-06-11 01:15:13 +02:00
|
|
|
exit;
|
|
|
|
} 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");
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Process feeds and trackbacks even if not using themes.
|
|
|
|
if ( is_feed() ) {
|
|
|
|
include(ABSPATH . '/wp-feed.php');
|
|
|
|
exit;
|
|
|
|
} else if ( is_trackback() ) {
|
|
|
|
include(ABSPATH . '/wp-trackback.php');
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-06 02:09:16 +01:00
|
|
|
?>
|