0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

概要

最近の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に記載することで
有効にできます。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?