//禁用Gutenberg(古腾堡) 编辑器,启用经典编辑器
add_filter('use_block_editor_for_post', '__return_false');
//禁用block editor编辑器后,前端还是会加载相关的的样式文件,所以要禁止前端加载样式文件
remove_action( 'wp_enqueue_scripts', 'wp_common_block_scripts_and_styles' );