false, 'width' => 1200, 'height' => 900, 'flex-height' => false, 'flex-width' => false, 'default-text-color' => '', 'header-text' => false, 'uploads' => true, ); add_theme_support( 'custom-header', $custom_header_defaults ); /** * iframeをレスポンシブ対応(16:9)にする */ add_theme_support( 'responsive-embeds' ); /** * HTML5 */ add_theme_support( 'html5', array( 'comment-list', 'comment-form', 'search-form', 'gallery', 'caption' ) ); /** * ブロックエディタの全幅に合わせる * https://developer.wordpress.org/block-editor/how-to-guides/themes/theme-support/#wide-alignment */ add_theme_support( 'align-wide' ); /** * ブロックスタイルを適応させる * https://www.nxworld.net/wp-gutenberg-css-settings.html */ add_theme_support( 'wp-block-styles' ); /** * Add skip link */ function brainpress_wp_body_open( $output ) { echo ''; } add_action( 'wp_body_open', 'brainpress_wp_body_open', 5 ); }