Tắt chức năng Gutenberg Widget Block Editor trên wordpress
Có thể sử dụng 1 trong những code sau.
Code 1
hoặc Code 2
hoặc Code 3
Khuyến nghị nếu sài code nào không áp dụng thì vui lòng sử dụng code tiếp theo. Tuyệt đối không dán 3 code vào tất cả. Chỉ sử dụng 1 trong 3 code function mà thôi. Nếu ai chưa biết code dán function ở đâu thì có thể xem bài này.
Chúc các bạn thành công
1 2 3 4 5 6 |
// Disable Gutenberg for widgets. // Disables the block editor from managing widgets in the Gutenberg plugin. add_filter( 'gutenberg_use_widgets_block_editor', '__return_false', 100 ); // Disables the block editor from managing widgets. add_filter( 'use_widgets_block_editor', '__return_false' ); |
1 2 3 4 5 6 |
if ( ! function_exists( 'ngoinhaweb_activate_classic_widgets' ) ) : function ngoinhaweb_activate_classic_widgets() { remove_theme_support( 'widgets-block-editor' ); } endif; add_action( 'after_setup_theme', 'ngoinhaweb_activate_classic_widgets' ); |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
// Disable Gutenberg for widgets. add_filter( 'use_widgets_blog_editor', '__return_false' ); add_action( 'wp_enqueue_scripts', function() { // Remove CSS on the front end. wp_dequeue_style( 'wp-block-library' ); // Remove Gutenberg theme. wp_dequeue_style( 'wp-block-library-theme' ); // Remove inline global CSS on the front end. wp_dequeue_style( 'global-styles' ); }, 20 ); |