公開前プレビューで権限エラーがでる場合の対処方法
WordPressでコンテンツを公開前にプレビューする時に次のエラーが出てプレビュー出来ない時の対処方法です。
下書きをプレビューする権限がありません。
手順
1. WordPressの自動認証用キー生成ページにアクセスする
ページ:https://api.wordpress.org/secret-key/1.1/salt/
2. 表示された内容をコピーする
認証用キーを含む全ての内容を選択してコピーします。
3. wp-config.phpを編集可能な状態で開く
FTPクライアントソフトなどで、サーバーにアクセスし、次のファイルを開きます。
ファイル:wordpress/wp-config.php
4. 認証用ユニークキー設定部分を置き換える
次の内容をコメントアウトもしくは、削除したあと、コピーした内容をペーストします。
define('AUTH_KEY', 'put your unique phrase here'); define('SECURE_AUTH_KEY', 'put your unique phrase here'); define('LOGGED_IN_KEY', 'put your unique phrase here'); define('NONCE_KEY', 'put your unique phrase here'); define('AUTH_SALT', 'put your unique phrase here'); define('SECURE_AUTH_SALT', 'put your unique phrase here'); define('LOGGED_IN_SALT', 'put your unique phrase here'); define('NONCE_SALT', 'put your unique phrase here');