如何通过插件设置自定义主页

时间:2015-10-29 作者:gpnalin

我正在开发一个插件电影数据库插件,我想使用该插件为wordpress主题设置一些自定义模板。我怎样才能做到这一点?

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

您可以通过如下插件替换主页模板:

// Filter to replace the template of the home page
add_filter( \'template_include\', \'replace_home_page\' );

function replace_home_page( $template ) {
    if ( is_front_page() ) {
        return plugin_dir_path( __FILE__ ) . \'new_template.php\';
    }
    return $template;
}

src/read more

相关推荐

Templates for Mobile Site

是否有任何内置方法可以根据浏览器大小显示不同的模板(即移动设备检测)?我做了一些研究,我能找到的只是大量插件,它们的功能远远超出了我的需要。我基本上只需要一种方法,将移动目录添加到我的主题中,并为移动用户显示该主题。