0
1

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 3 years have passed since last update.

WordPressでメディアライブラリが表示されない時の対処法

Last updated at Posted at 2020-12-08

ワードプレスのテーマtwentytwentyを基盤に、管理者画面のメディアライブラリで投稿した画像が表示されないエラーを対処する実装を行ったので、備忘録的にこの記事を残す。

環境情報

PHP:version 7.3.12
WordPress:version 5.5.3
WPテーマ:twentytwenty

対処法

修正を行うには、直接admin-ajax.phpファイルを書き換える必要があります。

変更前

wp-admin/admin-ajax.php
header( 'Content-Type: text/html; charset=' . get_option( 'blog_charset' ) );

変更後

wp-admin/admin-ajax.php
if( in_array( $_POST['action'], array( 'query-attachments', 'send-attachment-to-editor' ))){
	header( 'Content-Type: application/json; charset=' . get_option('blog_charset' ));
}else{
	header( 'Content-Type: text/html; charset=' . get_option( 'blog_charset' ) );
}
header( 'X-Robots-Tag: noindex' );
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?