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' => '
', 'after_widget' => '
', 'before_title' => '
', 'after_title' => '
', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer', 'acajou' ), 'id' => 'footer-1', 'description' => esc_html__( 'Add widgets here.', 'acajou' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '
', 'after_title' => '
', ) ); } add_action( 'widgets_init', 'acajou_widgets_init' ); /** * Enqueue scripts and styles. */ function acajou_scripts() { // CSS wp_enqueue_style( 'normalize', get_template_directory_uri().'/css/normalize.min.css' ); wp_enqueue_style( 'foundation-css', get_template_directory_uri().'/css/foundation.css' ); wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/css/font-awesome.min.css' ); $style = "style"; if(""!=get_theme_mod('acajou_theme_color')){ $color = get_theme_mod('acajou_theme_color'); $style = 'style-'.$color; } wp_enqueue_style( 'acajou-style', get_template_directory_uri().'/css/'.$style.'.css' ); // JS wp_enqueue_script( 'jquery' ); wp_enqueue_script( 'modernizer', get_template_directory_uri().'/js/modernizr.min.js'); wp_enqueue_script( 'foundation-js', get_template_directory_uri().'/js/foundation.min.js'); wp_enqueue_script( 'typed', get_template_directory_uri().'/js/typed.js'); wp_enqueue_script( 'scroll-reveal', get_template_directory_uri().'/js/scrollreveal.min.js'); wp_enqueue_script( 'main-scripts', get_template_directory_uri().'/js/scripts.js'); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } function acajou_admin_js($hook) { /* if ( 'customize.php' != $hook ) { return; } */ wp_enqueue_script( 'acajou_admin_js', get_template_directory_uri() . '/js/admin.js' ); } add_action( 'wp_enqueue_scripts', 'acajou_scripts' ); /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php';