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 http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails */ add_theme_support( 'post-thumbnails' ); add_image_size( 'sosimple-featured', '656', '300', true ); add_image_size( 'sosimple-site-logo', '300', '300' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'sosimple' ), ) ); add_editor_style( array( 'editor-style.css', sosimple_fonts_url(), get_template_directory_uri() . '/genericons/genericons.css' ) ); /* * 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( 'aside', 'image', 'video', 'quote', 'link', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'sosimple_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); } endif; // sosimple_setup add_action( 'after_setup_theme', 'sosimple_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 sosimple_content_width() { $GLOBALS['content_width'] = apply_filters( 'sosimple_content_width', 640 ); } add_action( 'after_setup_theme', 'sosimple_content_width', 0 ); /** * Register widget area. * * @link http://codex.wordpress.org/Function_Reference/register_sidebar */ function sosimple_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'sosimple' ), 'id' => 'sidebar-1', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'sosimple_widgets_init' ); /** * Enqueue scripts and styles. */ function sosimple_scripts() { wp_enqueue_style( 'sosimple-style', get_stylesheet_uri() ); wp_enqueue_style( 'sosimple-fonts', sosimple_fonts_url(), array(), null ); wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.0.3' ); wp_enqueue_script( 'sosimple-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20120206', true ); wp_enqueue_script( 'sosimple-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array( 'jquery' ), '1.0', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'sosimple_scripts' ); /** * Register Google Fonts */ function sosimple_fonts_url() { $fonts_url = ''; /* Translators: If there are characters in your language that are not * supported by Roboto Slab, translate this to 'off'. Do not translate * into your own language. */ $font_families = array(); $heading_font_family = get_theme_mod( 'sosimple_google_fonts_heading_font', null ); $body_font_family = get_theme_mod( 'sosimple_google_fonts_body_font', null ); if ( !empty( $heading_font_family ) && $heading_font_family !== 'none' ) { $heading_font = _x( 'on', $heading_font_family . ' font: on or off', 'sosimple' ); if ( 'off' !== $heading_font ) { $font_families[] = $heading_font_family; } } if ( !empty( $body_font_family ) && $body_font_family !== 'none' && $body_font_family !== $heading_font_family ) { $body_font = _x( 'on', $body_font_family . ' font: on or off', 'sosimple' ); if ( 'off' !== $body_font ) { $font_families[] = $body_font_family; } } if ( count( $font_families ) === 4 ) { array_slice( $font_families, 2 ); } if ( !empty( $font_families ) ) { $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), ); $fonts_url = add_query_arg( $query_args, '//fonts.googleapis.com/css' ); } return $fonts_url; } function sosimple_load_theme_fonts() { $heading = get_theme_mod( 'sosimple_google_fonts_heading_font' ); $body = get_theme_mod( 'sosimple_google_fonts_body_font' ); if ( ( !empty( $heading ) && $heading != 'none' ) || ( !empty( $body ) && $body != 'none' ) ) { echo ''; } } add_action( 'wp_head', 'sosimple_load_theme_fonts' ); /** * Enqueue Google Fonts for custom headers */ function sosimple_admin_styles() { wp_enqueue_style( 'sosimple-fonts', sosimple_fonts_url(), array(), null ); } add_action( 'admin_print_styles-appearance_page_custom-header', 'sosimple_admin_styles' ); /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * 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';