如何再添加一个模板(_TEMPLATE)

时间:2015-08-30 作者:user3852799

我有wordpress主题,它添加了一些脚本和css trought函数php。我想再添加一个模板文件,但不知道如何添加。有什么想法吗?这就是我所拥有的。我很乐意得到任何回答。谢谢

// add styles per template

    if ( ztheme_is_template(\'base-gallery-rail.php\') {         

        wp_enqueue_style(\'ztheme-gallery-style\'); 

1 个回复
最合适的回答,由SO网友:Will 整理而成

下面是一个使用默认WordPress的示例is_page_template 功能:

<?php
if ( is_page_template( \'base-gallery-rail.php\' ) ) {
    wp_enqueue_style(\'ztheme-gallery-style\'); 
} else if ( is_page_template( \'other-template.php\' ) ) {
    wp_enqueue_style(\'other-style\'); 
} else { // the last else is only required if you want to have a default
    wp_enqueue_style(\'default\'); 
}
您可以添加任意多个else if ( blah ){ //do stuff } 根据您的需要。如果你的分数超过四分或五分,可以考虑使用switch 陈述