WordPressのメディアライブラリに画像が表示されない、挿入出来ない、対処方法
を参考にしました。
wp-admin/admin-ajax.php
の
1 |
@header( 'Content-Type: text/html; charset=' . get_option( 'blog_charset' ) ); |
を
1 2 3 4 5 |
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' ) ); } |
にする