$\\u GET[]查询变量通过给web服务器的URL请求传递,并且在WordPress操作周期中的任何时候都可用。您不需要挂接到操作中就可以访问变量。
“init”钩子通常是最好的钩子操作,除非在任何其他插件之前操作很重要,并且允许您访问WP\\u redirect之类的WP函数。
function myRedirector(){
if ($_GET[\'somethingIcareAbout\'] == "exists"){
$url = "https://somewhere.com";
wp_redirect( $url );
exit;
}
}
add_action( \'init\', \'myRedirector\');