メディアを挿入でメディアライブラリをクリックしても画像が表示されない場合の対処法です。
画像を投稿に挿入することもできない現象が生じた。
こちらを参考にして書き換えると解決した。
あわせて読みたい
/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' ) );
}