在 WordPress 中,用户登录查询在哪里,就像我们在 php 核心中所做的那样:
$query = mysql_query("select * from user where username= 'this' and password = 'this'");
哪个文件/代码在管理员登录时运行?我需要检查我对管理员、子管理员、超级管理员的自定义权限,例如:
$query = mysql_query("select * from user where username= 'this' and password = 'this' and login_auth = 'true'");