有很多人大概不習慣新版的小工具和編輯器

wordpress 恢復舊版 小工具 Classic Widgets 恢復舊版編輯器 disable Gutenberg 禁用古騰堡

可以打開主題functions.php

在適當的位置插入

 
  1. //Classic Widgets  恢復舊版小工具   
  2. function example_theme_support() {   
  3.     remove_theme_support( 'widgets-block-editor' );   
  4. }   
  5. add_action( 'after_setup_theme', 'example_theme_support' );   
  6.   
  7.   
  8. // disable Gutenberg 禁用古騰堡 恢復舊版編輯器   
  9. add_filter('use_block_editor_for_post', '__return_false', 10);   

 

相關閱讀