tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'revelar' ), ) ); /* * 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', ) ); /* * Enable support for Post Formats. * See http://codex.wordpress.org/Post_Formats */ add_theme_support( 'post-formats', array( 'image', 'gallery', 'video', 'quote', 'link', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'revelar_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); /* * Enable support for Post Thumbnails on posts and pages. * * @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails */ add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 1200, 800, true ); add_image_size( 'revelar-front-thumbnail', 586, 390, true ); } endif; // revelar_setup add_action( 'after_setup_theme', 'revelar_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function revelar_content_width() { $GLOBALS['content_width'] = apply_filters( 'revelar_content_width', 1200 ); } add_action( 'after_setup_theme', 'revelar_content_width', 0 ); /** * Register widget area. * * @link http://codex.wordpress.org/Function_Reference/register_sidebar */ function revelar_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'First Footer Widget Area', 'revelar' ), 'id' => 'sidebar-1', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Second Footer Widget Area', 'revelar' ), 'id' => 'sidebar-2', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Third Footer Widget Area', 'revelar' ), 'id' => 'sidebar-3', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'revelar_widgets_init' ); /** * Enqueue scripts and styles. */ function revelar_scripts() { wp_enqueue_style( 'revelar-fonts', revelar_fonts_url(), array(), null ); wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.3' ); wp_enqueue_style( 'revelar-styles', get_stylesheet_uri(), array( 'genericons' ) ); wp_enqueue_script( 'revelar-scripts', get_template_directory_uri() . '/js/revelar.js', array( 'jquery' ), '20160115', true ); wp_enqueue_script( 'revelar-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20160115', true ); wp_enqueue_script( 'revelar-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20160115', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'revelar_scripts' ); /** * Register Google Fonts. */ function revelar_fonts_url() { $fonts_url = ''; /* Translators: If there are characters in your language that are not * supported by Open Sans, translate this to 'off'. Do not translate * into your own language. */ $open_sans = _x( 'on', 'Open Sans font: on or off', 'revelar' ); /* Translators: If there are characters in your language that are not * supported by Bitter, translate this to 'off'. Do not translate into your * own language. */ $merriweather = _x( 'on', 'Merriweather font: on or off', 'revelar' ); /* Translators: If there are characters in your language that are not * supported by Bitter, translate this to 'off'. Do not translate into your * own language. */ $abril = _x( 'on', 'Abril Fatface font: on or off', 'revelar' ); if ( 'off' !== $open_sans || 'off' !== $merriweather || 'off' !== $abril ) { $font_families = array(); if ( 'off' !== $open_sans ) { $font_families[] = 'Open Sans:600'; } if ( 'off' !== $merriweather ) { $font_families[] = 'Merriweather:400,400italic,700,700italic'; } if ( 'off' !== $abril ) { $font_families[] = 'Abril Fatface:400'; } $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), ); $fonts_url = add_query_arg( $query_args, "https://fonts.googleapis.com/css" ); } return $fonts_url; } /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * 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';