Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wordpress-seo domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/vinascript/html/wp-includes/functions.php on line 6114
Hướng dẫn disable Widget Block Editor trên WordPress - VinaScript

Latest Post

Triển khai dự án PHP, Mysql với Nginx trên Docker Tìm hiểu về HTML – Ưu điểm, nhược điểm và cách hoạt động của HTML

Từ phiên bản WordPress 5.8 trở đi, giao diện quản lý Widget trên WordPress đã trải qua sự thay đổi. Nó được gọi là Block Widget và đi kèm với nhiều tính năng mới hấp dẫn. Tuy nhiên, nếu bạn cảm thấy lạ lẫm với giao diện mới này hoặc vẫn ưa thích giao diện quản lý Widget trước đây, bạn có thể áp dụng một trong hai cách sau đây.

Disable / tắt bằng cách sử dụng Plugin Widget Disable

Các bạn có thể cài đặt và kích hoạt plugin “Widget Disable”

Link: https://wordpress.org/plugins/wp-widget-disable/

Disable / Tắt bằng cách sử dụng code

Đưa đoạn code sau vào file functions.php trong theme của WordPress

// 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. renamed from wp_use_widgets_block_editor
add_filter( 'use_widgets_block_editor', '__return_false' );

Để lại một bình luận

Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *