当查询字符串键具有空值时,我需要将自定义模板页面重定向到主页。
例如:https ://example.com/customtemplatepage/?value= 1 Customtemplatepage 是在主题的根目录中使用自定义模板 customtemplate.php 设置的页面。
每当查询字符串键“值”为空时,都需要将其重定向到根目录(“/”或主页)。
- 我试图在 functions.php 中捕捉到它,但它仍然为空/customtemplate.php 尚未加载还
add_action('wp_redirect','function');
为时过早global $template;
- 当我在 customtemplate.php 中执行此操作时,为时已晚,
wp_redirect();
因为标题已经存在
可以在 customtemplate.php 中使用 JS window.location
,但这不是一个选项,因为我们必须在服务器端进行。