ブログ

BLOG

CATEGORY

Head Cleanerのエラー

Head Cleanerプラグインを有効化した際、エラーが表示された。

ブラウザ側

Warning: Use of undefined constant WPLANG – assumed ‘WPLANG’ (this will throw an Error in a future version of PHP) in /home/(サーバーのアカウント名)/www/wp/wp-content/plugins/head-cleaner/head-cleaner.php on line 270

管理画面側

Warning: Use of undefined constant WPLANG – assumed ‘WPLANG’ (this will throw an Error in a future version of PHP) in /home/(サーバーのアカウント名)/www/wp/wp-content/plugins/head-cleaner/head-cleaner.php on line 270

Warning: Cannot modify header information – headers already sent by (output started at /home/(サーバーのアカウント名)/www/wp/wp-content/plugins/head-cleaner/head-cleaner.php:270) in /home/(サーバーのアカウント名)/www/wp/wp-admin/includes/misc.php on line 1126

解決策

調べた所、同じエラー困っていた方がいました。
wp-config.phpに下記を追加するだけでエラーが無くなるとのこと。
実際、下記を追加するだけで直りました。

define (‘WPLANG’, ‘ja’);

参考サイト
https://qiita.com/pugiemonn/items/72e5a3972611595ca450