이 맞춤 게시물 유형이 있습니다.
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' );
WordPress 관리 영역의 클래식 편집기를 보여줍니다. 작동하지 않는 지원 배열에서 'editor'를 'gutenberg'로 바꾸려고했습니다. 또한 여기에 제안 된 대로이 코드를 함수에 추가했습니다 .
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;
}
내 맞춤 게시물 유형에 Gutenberg 편집기를 어떻게 사용할 수 있습니까?