你好@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\'
, 但这就是你想要的吗?