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'");