概要
最近のWordpressではブロックエディタを使って
サイトを作ることが多くなってきました。
そこでWoocommerceの商品登録でも
ブロックエディタを使えるようにしました。
実際のコード
functions.php
function activate_gutenberg_product( $can_edit, $post_type ) {
if ( $post_type == 'product' ) {
$can_edit = true;
}
return $can_edit;
}
add_filter( 'use_block_editor_for_post_type', 'activate_gutenberg_product', 10, 2 );
上記をfunctions.phpに記載することで
有効にできます。