본문 바로가기

워드프레스 커스텀 포스트 타입의 기본 에디터 설정

web/wordpress by 코나인 2023. 5. 15.
반응형

워드프레스에서 커스텀 포스트 타입을 생성하면

편집기는 기본적으로 클래식 에디터로 지정됩니다.

하지만 'show_in_rest' 필드를 true로 설정하면

블록 에디터로 설정됩니다.

 

설정 코드

테마의 functions.php에서 register_post_type의 옵션으로 show_in_rest을 true로 설정합니다.

<?php
function register_post_type_account() {
  register_post_type('account', [
    'public'            => true,
    'label'             => '입출금 기록',
    'show_in_rest'      => true,
  ]);
}

add_action('init', 'register_post_type_account');

 

설정전

 

설정후

반응형

댓글