我正在使用 ashortcode
来输出内容,但我不想被其他任何东西包围。
如何避免加载 wordpress 主题?
如何通过我的插件加载自定义主题?
我正在使用 ashortcode
来输出内容,但我不想被其他任何东西包围。
如何避免加载 wordpress 主题?
如何通过我的插件加载自定义主题?
我想你最好使用自定义字段,所以在你的单个或页面文件中,你应该检查“如果有 X 单个字段,只回显内容,否则,调用 wp_head 和所有这些东西”
我发现最好的方法是使用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;
}
}