غیرفعال کردن ویرایشگر گوتنبرگ
برای غیرفعال کردن گوتنبرگ برای همه نوع پستها، کد زیر رو داخل فایل functions.php قالبت قرار بده:
// Disable Gutenberg editor for all post types
add_filter('use_block_editor_for_post_type', 'disable_gutenberg_for_all_post_types', 10, 2);
function disable_gutenberg_for_all_post_types($use_block_editor, $post_type) {
return false;
}
حذف استایلهای پیشفرض گوتنبرگ
اگه میخوای استایلهای پیشفرض گوتنبرگ هم روی فرانتاند لود نشن، این کد رو هم به همون فایل functions.php اضافه کن:
// Remove Gutenberg-related styles from frontend
function remove_gutenberg_styles_from_frontend() {
wp_dequeue_style('wp-block-library');
wp_dequeue_style('wp-block-library-theme');
wp_dequeue_style('wc-block-style');
}
add_action('wp_enqueue_scripts', 'remove_gutenberg_styles_from_frontend', 100);


