[MENTION=177991]bdvstore87[/MENTION] Pues ahí tienes tu error... Seguramente tengas algún plugin, ¿TinyMCE Advanced o jetpack tal vez?. O son plugins o es el theme. Prueba desactivando ese plugin si lo tienes, o sino desactivalos todos y prueba. Por último si no te funciona, cambia de plantilla y prueba de nuevo.
Como dices que ya has desactivado los plugins y no te funcionó pregunto ¿No tienes cache? algún plugin instalado en tu wordpress o cache en tu servidor. Asegúrate también de vaciar el caché de tu navegador (Ctrl+f5).
Topic: 5.2 breaks Text and TinyMCE widgets « WordPress.org Forums
Ahí tienes la posible solución o más simple, añade esto al functions.php de tu theme ANTES del ?> final:
Insertar CODE, HTML o PHP:
add_filter( "init", "disable_grunion", 1000 );
function disable_grunion() {
remove_action( 'admin_notices', array( "Grunion_Editor_View", 'handle_editor_view_js' ) );
remove_filter( 'mce_external_plugins', array( "Grunion_Editor_View", 'mce_external_plugins' ) );
remove_filter( 'mce_buttons', array( "Grunion_Editor_View", 'mce_buttons' ) );
remove_action( 'admin_head', array( "Grunion_Editor_View", 'admin_head' ) );
}
Parece ser un error genérico en JetPack ya reportado hace poco, lo corregirán en breves seguramente.