我查看了Wordpress Hook DB,在编辑用户后找不到任何方法来更改wordpress重定向到的页面...有没有人知道会执行此操作的挂钩,或者我可以完成的另一种方式同样的事情?
答案 0 :(得分:1)
您只能在wp_redirect
;
user-edit.php
function my_user_edit_redirect($location)
{
return admin_url('somewhere/else.php');
}
add_action('load-user-edit.php', create_function('', '
add_filter("wp_redirect", "my_user_edit_redirect");'));