0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

WordPressで管理者メールアドレスを更新したら、変更の承認待ちが表示されたときにDBから更新する方法

Posted at

状況

画像のように、管理者メールアドレスを変更したところ、認証のメッセージが表示されました。
Image from Gyazo

対策

ちゃんとメールを受け取れるならばそれでもいいですが、めんどくさいのでDBから対応します。以下の2つのSQLで対応します。

update [DB] set option_value = "[新メールアドレス]" where option_name = "new_admin_email" and option_value = "[旧メールアドレス]";
update [DB] set option_value = "[新メールアドレス]" where option_name = "admin_email" and option_value = "[旧メールアドレス]";

結果

メッセージが消えました。
Image from Gyazo

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?