管理者ページでコメントを編集するためのエディタはHTMLのみですが、ビジュアルエディタも含むようにフィルタでコメント編集ページを変更することはできますか?
WordPress 4.0以降を使用している場合は、wp_editor_settings
およびglobal $pagenow
を使用してコメントページにいるかどうかを判断できます。
add_filter( 'wp_editor_settings', 'remove_editor_quicktags', 10, 2 );
function remove_editor_quicktags( $settings, $id ){
global $pagenow;
if ( $id == 'content' && $pagenow === 'comment.php' ){
$settings['quicktags'] = false;
$settings['tinymce'] = true;
}
return $settings;
}