4.8/5 - (5 bình chọn)

Hiện tại Gutenberg hỗ trợ soạn thảo layout rất tốt. Tuy nhiên, nó rất khó sử dụng đối với một số khách hàng chỉ thuần về viết content.

Dù vậy, nếu giữ gutenberg cho phần page sẽ tốt hơn, nó giúp tạo dựng landing page đẹp, nhanh, nhẹ. Không cần cài thêm plugin. Hôm nay mình sẽ chia sẻ đoạn code tắt gutenberg ở phần soạn thảo bài viết, giữ lại ở phần page. Các bạn copy và paste vào functions của theme đang dùng nhé.

<?php
function my_disable_gutenberg_posts( $current_status, $post_type ) {
    // Disabled post types
    $disabled_post_types = array( 'post' );

    // Change $can_edit to false for any post types in the disabled post types array
    if ( in_array( $post_type, $disabled_post_types, true ) ) {
        $current_status = false;
    }
    return $current_status;
}
add_filter( 'use_block_editor_for_post_type', 'my_disable_gutenberg_posts', 10, 2 );

Chúc các bạn có thể sử dụng tốt gutenberg nhé.

Để 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 *

2 Bình luận

  1. Xin chào, link download không truy cập được, Báo lỗi “Sorry, there have been too many anonymous link requests for files and folders on this site. Please try again later.”.

    Bạn vui lòng upload link khác nhé.