脱离模板运行php脚本的最佳方式是什么?

时间:2011-02-08 作者:Mild Fuzz

我正在寻找一些关于如何从模板中运行php脚本的最佳方法的灵感。我知道wordpress核心文件不会加载,所以我想知道您在执行此操作时遵循的工作流程是什么?

干杯

1 个回复
SO网友:MikeSchinkel

你好@Mild Fuzz:

听起来你可能要找的是the template_redirect hook. 如果您为该钩子添加了一个函数,那么您可以输出您想要的任何内容,并以exit; 陈述

add_action( \'template_redirect\', \'yoursite_template_redirect\' );
function yoursite_template_redirect() {
  if (isset($_GET[\'foo\']) && $_GET[\'foo\']==\'bar\') {
    // Do whatever you want when $_GET[\'foo\']==\'bar\'
  }
}
您需要弄清楚要测试的标准,如我所展示的$_GET[\'foo\']==\'bar\', 但这就是你想要的吗?

结束