[WordPress]CloudFrontでビジュアルエディタが使えない問題を解決する

WordPress
スポンサーリンク

functions.phpに以下の記述を追加します。

function dtbaker_wp_cloudfront(){ 
    add_filter('user_can_richedit','__return_true'); 
} 
add_action( 'init', 'dtbaker_wp_cloudfront' , 9 );
Rich Text/Visual/WYSIWYG Editor does not work in WordPress behind cloudfront | dtbaker.net
WordPress decides if the Rich Text / Visual editor should display based on the browser user agent. Unfortunately if you ...

コメント

タイトルとURLをコピーしました