如何避免在wordpress插件中加载主题?

时间:2012-01-15 12:46:33

标签: wordpress plugins themes

我使用shortcode来输出内容,但我不希望被其他任何内容包围,即如何避免加载WP主题?
或者以另一种方式,我可以通过我的插件加载自定义主题吗?

2 个答案:

答案 0 :(得分:0)

我想你最好使用自定义字段,所以在你的单个或页面文件中,你应该检查“如果有X单个字段,只回显内容,否则,调用wp_head和所有这些东西”

答案 1 :(得分:0)

我找到的最好的方法是使用template_redirect挂钩:

add_action('template_redirect', 'myoutput');
function myoutput()
{
    if ('my code to decide if output without load a theme')
    {
        include ('/myoutput.php'); // file must be properly html coded
        exit;
    }
}