WordPressメディアライブラリに画像が表示されない

ホームページ制作

WordPressのメディアライブラリが表示されないでぐるぐるまわる現象が現れた。

【解決策】

WordPress本体に「wp-admin」というフォルダがあるので、その中にある「admin-ajax.php」を編集

「@header( ‘Content-Type: text/html; charset=’ . get_option( ‘blog_charset’ ) );」

 ↓↓↓↓↓↓

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’ ) );
}

以上

古いWordPressを使用しているサイトも多いので最近不具合が多くなっている。

とりあえず、ライブラリが表示されるようになって良かったです。

Translate »