'ffffff', 'default-image' => '', ) ) ); // Add support for core custom logo add_theme_support( 'custom-logo', array( 'height' => 80, 'width' => 100, 'flex-width' => true, ) ); // Translation ready load_theme_textdomain( 'kiyono', get_template_directory() . '/languages' ); // Add theme support for blocks add_theme_support( 'align-wide' ); add_theme_support( 'wp-block-styles' ); add_theme_support( 'editor-styles' ); $editor_stylesheet_path = './assets/css/style-editor.css'; add_editor_style( $editor_stylesheet_path ); // Register Navigation register_nav_menu( 'primary', esc_html__('Primary Menu', 'kiyono') ); } endif; add_action( 'after_setup_theme', 'kiyono_setup_theme'); function test_content_width() { $GLOBALS['content_width'] = apply_filters( 'test_content_width', 640 ); } add_action( 'after_setup_theme', 'test_content_width', 0 );