tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /** * Add callback for custom TinyMCE editor stylesheets. (editor-style.css) * @see http://codex.wordpress.org/Function_Reference/add_editor_style */ add_editor_style(); /** * Add support for shortcodes in the default text widget * @see http://codex.wordpress.org/Function_Reference/do_shortcode */ add_filter('widget_text', 'do_shortcode'); /* * 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' ); // This theme uses wps_nav_menu() in three locations. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'shaped-pixels' ), 'footer' => esc_html__( 'Footer Menu', 'shaped-pixels' ), 'social' => esc_html__( 'Social Menu', 'shaped-pixels' ), ) ); /* * 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', 'quote', 'link', 'status', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'shaped_pixels_custom_background_args', array( 'default-color' => '4f5357', 'default-image' => get_stylesheet_directory_uri() . '/images/scanlines.png', 'default-attachment' => 'fixed', ) ) ); } endif; // shaped_pixels_setup add_action( 'after_setup_theme', 'shaped_pixels_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 shaped_pixels_content_width() { $GLOBALS['content_width'] = apply_filters( 'shaped_pixels_content_width', 980 ); } add_action( 'after_setup_theme', 'shaped_pixels_content_width', 0 ); /** * Register Google fonts. * @return string Google fonts URL for the theme. */ if ( ! function_exists( 'shaped_pixels_fonts_url' ) ) : function shaped_pixels_fonts_url() { $fonts_url = ''; $fonts = array(); if( esc_attr(get_theme_mod( 'load_cyrillic_subset', 0 ) ) ) : $subsets = 'cyrillic, cyrillic-ext'; else: $subsets = 'latin,latin-ext'; endif; // Translators: If there are characters in your language that are not supported by Raleway, translate this to 'off'. Do not translate into your own language. if ( 'off' !== _x( 'on', 'Raleway font: on or off', 'shaped-pixels' ) ) { $fonts[] = 'Raleway:400,600'; } if ( $fonts ) { $fonts_url = add_query_arg( array( 'family' => urlencode( implode( '|', $fonts ) ), 'subset' => urlencode( $subsets ), ), 'https://fonts.googleapis.com/css' ); } return $fonts_url; } endif; /** * Enqueue styles and scripts. */ function shaped_pixels_scripts() { // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'shaped-pixels-fonts', shaped_pixels_fonts_url(), array(), null ); // Add Font Awesome Icons. Unminified version included. if( esc_attr(get_theme_mod( 'load_fontawesome', 1 ) ) ) : wp_enqueue_style('fontAwesome', get_template_directory_uri() . '/css/fontawesome.min.css', array(), '4.3.0' ); endif; // Load our responsive stylesheet based on Bootstrap if( esc_attr(get_theme_mod( 'load_bootstrap', 1 ) ) ) : wp_enqueue_style( 'bootstrap', get_template_directory_uri() . '/css/bootstrap.min.css', array( ), '3.2.1' ); endif; // Load our main stylesheet wp_enqueue_style( 'shaped-pixels-style', get_stylesheet_uri() ); // Load our mobile navigation script wp_enqueue_script( 'shaped-pixels-navigation', get_template_directory_uri() . '/js/navigation.js', array( 'jquery' ), '20120206', true ); // Load our skip-link-focus-fix script wp_enqueue_script( 'shaped-pixels-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20130115', true ); // Load our comments when viewing the single post or page if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'shaped_pixels_scripts' ); /** * 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'; /** * Load widget positions. */ require get_template_directory() . '/inc/sidebars.php'; /** * Load inline styles. */ require get_template_directory() . '/inc/inline-styles.php'; /** * Theme information */ require get_template_directory() . '/inc/theme-info.php';