有人知道add_action()
在用户成功通过身份验证后立即使用的挂钩。
Hook Test based on @mmm\'s answer
我从我的
mu-plugins.php
文件:
function check_for_superAdmin() {
if ( is_super_admin() ) { echo \'I\\\'m a Super Admin !\'; exit; }
}
add_action( \'wp_login\', \'check_for_superAdmin\' );
the
check_for_superAdmin()
功能正常,但
is_super_admin()
函数没有。我可能需要在其中传递一个参数。正在检查。。。。