我会说template_redirect
. 但看看Action Reference.
示例别忘了exit()
在重定向时。
/**
* This example redirects everything to the index.php page
* You can do the same for the dashboard with admin_url( \'/\' );
* Or simply base the redirect on conditionals like
* is_*() functions, current_user_can( \'capability\' ), globals, get_current_screen()...
*
* @return void
*/
function wpse12535_redirect_sample() {
exit( wp_redirect( home_url( \'/\' ) ) );
}
add_action( \'template_redirect\', \'wpse12535_redirect_sample\' );