160, 'width' => 320, 'flex-height' => true, 'flex-width' => true, ) ); // add_theme_support( 'menus' ); add_theme_support( 'widgets' ); add_theme_support( 'title-tag' ); add_theme_support( 'post-thumbnails' ); // feed add_theme_support( 'automatic-feed-links' ); // Gutenberg用 add_theme_support( 'align-wide' ); // 画像の全幅表示などを可能に add_theme_support( 'disable-custom-font-sizes' ); // フォントサイズのピクセル指定を不可に add_theme_support( 'custom-line-height' ); add_theme_support( 'custom-units', 'px', 'vw', 'vh' ); // add_theme_support( 'custom-spacing' ); // html5サポート $html5s = array( 'comment-form', 'comment-list', ); add_theme_support( 'html5', $html5s ); // フォントサイズ add_theme_support( 'editor-font-sizes', array( array( 'name' => '極小', 'shortName' => 'XS', 'size' => 10, 'slug' => 'xs', ), array( 'name' => '小', 'shortName' => 'S', 'size' => 12, 'slug' => 'small', ), array( 'name' => '標準', 'shortName' => 'M', 'size' => 16, 'slug' => 'normal', ), array( 'name' => '大', 'shortName' => 'L', 'size' => 18, 'slug' => 'large', ), array( 'name' => '特大', 'shortName' => 'XL', 'size' => 24, 'slug' => 'huge', ), ) ); }