Wordpress:模板页面在哪里调用?

时间:2014-05-19 17:33:12

标签: php wordpress

我正在尝试将wordpress与之前安装的平台集成。

我能够按照自己的意愿编辑大部分系统,但在加载wordpress之前,我无法弄清楚如何干预template file的内容。

我想要添加的是一个简单的条件语句,可以通过以前的cms加载页面,也可以正常加载wordpress

但是,我无法理解哪个函数或文件加载了主题的组件。

我理解wp使用模板层次结构,为不同类型的网页(帖子,类别页面等)加载不同的files

但是function正在做出这个选择并实际加载文件?

1 个答案:

答案 0 :(得分:3)

您的问题在您实际尝试的内容中并不明确,但/wp-includes/template-loader.php对您特别感兴趣。

这是加载模板的文件。只是为了说清楚我不是建议你修改这个文件我只是指出了魔法发生的地方。

一旦加载,它就会运行template_redirect动作。如果你想执行一些逻辑,那么重定向到这里就是你要做的。这是一个可以在你的主题的函数中找到的例子.php:

function wpse_template_redirect() {
    if ( condition_a() == condition_b() ) {
        wp_redirect( 'url-to-redirect-to' );
        exit;
    }
}
add_action( 'template_redirect', 'wpse_template_redirect' );

在此文件的底部有一些条件,用于确定哪个模板文件:

$template = false;
if     ( is_404()            && $template = get_404_template()            ) :
elseif ( is_search()         && $template = get_search_template()         ) :
elseif ( is_front_page()     && $template = get_front_page_template()     ) :
elseif ( is_home()           && $template = get_home_template()           ) :
elseif ( is_post_type_archive() && $template = get_post_type_archive_template() ) :
elseif ( is_tax()            && $template = get_taxonomy_template()       ) :
elseif ( is_attachment()     && $template = get_attachment_template()     ) :
    remove_filter('the_content', 'prepend_attachment');
elseif ( is_single()         && $template = get_single_template()         ) :
elseif ( is_page()           && $template = get_page_template()           ) :
elseif ( is_category()       && $template = get_category_template()       ) :
elseif ( is_tag()            && $template = get_tag_template()            ) :
elseif ( is_author()         && $template = get_author_template()         ) :
elseif ( is_date()           && $template = get_date_template()           ) :
elseif ( is_archive()        && $template = get_archive_template()        ) :
elseif ( is_comments_popup() && $template = get_comments_popup_template() ) :
elseif ( is_paged()          && $template = get_paged_template()          ) :
else :
    $template = get_index_template();
endif;
/**
 * Filter the path of the current template before including it.
 *
 * @since 3.0.0
 *
 * @param string $template The path of the template to include.
 */
if ( $template = apply_filters( 'template_include', $template ) )
    include( $template );
return;