Add the line below to your theme’s functions.php
file to disable the new Gutenberg editor in WordPress 5.0.
/* Disable the Gutenberg editor. */
add_filter('use_block_editor_for_post', '__return_false');
There’s also an official Classic Editor plugin if you want to go that route instead.