Tôi có loại bài tùy chỉnh này:
function create_posttype() {
register_post_type( 'companies',
array(
'labels' => array(
'name' => __( 'شرکتهای عضو' ),
'singular_name' => __( 'شرکت' )
),
'supports' => array('title', 'editor', 'custom-fields', 'excerpt', 'thumbnail'),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'companies'),
)
);
}
add_action( 'init', 'create_posttype' );
Hiển thị trình chỉnh sửa cổ điển trong khu vực quản trị WordPress. Tôi đã cố gắng thay thế 'trình soạn thảo' bằng 'gutenberg' trong mảng hỗ trợ không hoạt động. Tôi cũng đã thêm mã này vào chức năng của mình như được đề xuất ở đây :
add_filter('gutenberg_can_edit_post_type', 'prefix_disable_gutenberg');
function prefix_disable_gutenberg($current_status, $post_type)
{
if ($post_type === 'companies') return true;
return $current_status;
}
Làm cách nào tôi có thể có trình soạn thảo Gutenberg về loại bài đăng tùy chỉnh của mình?