Slide 26
Slide 26 text
ブロックテンプレート
$item = get_post_type_object( 'item' );
$item->template_lock = 'all';
$item->template = [
[ 'core/group', [ 'className' => 'item-block-group' ], [
[ 'core/image', [ 'className' => 'item-img','align' => 'full' ] ],
[ 'core/heading', [ 'className' => 'item-h2','level' => '2', 'content' => '商品名' ] ],
[ 'core/paragraph', [ 'className' => 'item-p', 'placeholder' => '新鮮たまねぎ 5kg(クリックで入力) ' ] ],
[[ 'core/heading', [ 'className' => 'item-h2','level' => '2', 'content' => '商品説明' ] ],
[ 'core/paragraph', [ 'className' => 'item-p', 'placeholder' => '無農薬にこだわって大切に栽培しています。(クリックで入力) '] ],
] ];
];
Before Gutenberg – ブロックテンプレートによる入稿制限
https://capitalp.jp/2018/12/13/block-template-for-cpt/