En la versión 77 de Chrome no se muestra el editor de WordPress, este error se puede solucionar añadiendo el siguiente código en el fichero functions.php del tema activo:
/** * Chrome 77 con Gutenberg. * * @info: https://github.com/WordPress/gutenberg/issues/17406 */ add_action( 'admin_head', function() { echo '<style>.block-editor-writing-flow { height: auto; }</style>'; // phpcs:ignore } );