tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); add_image_size( 'post-thumb', 370,210, array( 'left', 'top' ) ); add_image_size( 'single-thumb', 770,330, array( 'left', 'top' ) ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary', 'acajou' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); // Add theme support for background images or solid colors for the background add_theme_support( "custom-background"); /** * Set up the WordPress core custom header feature. * * @uses acajou_header_back() */ $args = array( 'flex-height' => true, 'width' => 1350, 'height' => 310, //'default-image' => get_template_directory_uri() . '/img/back.jpg', 'default-image' => '', ); add_theme_support( 'custom-header', $args ); /** * Set up the default content width * */ if ( ! isset( $content_width ) ) $content_width = 900; /** * Taking advantage of the Custom Logo API * @link https://codex.wordpress.org/Theme_Logo * @link https://www.sitepoint.com/wordpress-custom-logo-api/ */ add_theme_support('custom-logo'); add_image_size('acajou-logo', 150, 150); add_theme_support('custom-logo', array( 'size' => 'acajou-logo' )); } endif; add_action( 'after_setup_theme', 'acajou_setup' ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function acajou_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'acajou' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'acajou' ), 'before_widget' => '', 'before_title' => '