幅広のスタイルに対応させる

【関数】add_theme_support( ‘align-wide’ )
ブロックエディターでは、コンテンツの幅として「標準」「幅広」「全幅」の3種類のスタイルが用意されているが、テーマ側で何も設定しないと利用できるのは「標準」のみなので、function.phpに「add_theme_support( ‘align-wide’ )」を記述する。

function neko_block_setup(){
  add_theme_support( 'align-wide' );  //「幅広」「全幅」のスタイルに対応させる
}
add_action( 'after_setup_theme', 'neko_block_setup' );
inserted by FC2 system