'f1eedc', 'default-image' => '%s/images/walltexture.png', ) ) ); /** * Make theme available for translation * Translations can be filed in the /languages/ directory * If you're building a theme based on Chalkboard, use a find and replace * to change 'chalkboard' to the name of your theme in all the template files */ load_theme_textdomain( 'chalkboard', get_template_directory() . '/languages' ); /** * Add default posts and comments RSS feed links to head */ add_theme_support( 'automatic-feed-links' ); /** * Enable support for Post Thumbnails */ add_theme_support( 'post-thumbnails' ); /** * This theme uses wp_nav_menu() in one location. */ register_nav_menus( array( 'primary' => __( 'Primary Menu', 'chalkboard' ), ) ); /** * Enable support for Post Formats */ add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link' ) ); } endif; // chalkboard_setup add_action( 'after_setup_theme', 'chalkboard_setup' ); /** * Register widgetized area and update sidebar with default widgets * * @since Chalkboard 1.0 */ function chalkboard_widgets_init() { register_sidebar( array( 'name' => __( 'Sidebar', 'chalkboard' ), 'id' => 'sidebar-1', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer Sidebar 1', 'chalkboard' ), 'id' => 'footer-sidebar-1', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer Sidebar 2', 'chalkboard' ), 'id' => 'footer-sidebar-2', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer Sidebar 3', 'chalkboard' ), 'id' => 'footer-sidebar-3', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'chalkboard_widgets_init' ); /** * Enqueue Google Fonts */ function chalkboard_fonts() { /* translators: If there are characters in your language that are not supported by Gloria Hallelujah, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Gloria Hallelujah font: on or off', 'chalkboard' ) ) wp_register_style( 'chalkboard-gloria', "https://fonts.googleapis.com/css?family=Gloria+Hallelujah" ); /* translators: If there are characters in your language that are not supported by Roboto, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Roboto font: on or off', 'chalkboard' ) ) { $roboto_subsets = 'latin,latin-ext'; /* translators: To add an additional Open Sans character subset specific to your language, translate this to 'greek', 'cyrillic' or 'vietnamese'. Do not translate into your own language. */ $roboto_subset = _x( 'no-subset', 'Open Sans font: add new subset (greek, cyrillic, vietnamese)', 'minimalizine' ); if ( 'cyrillic' == $roboto_subset ) $roboto_subsets .= ',cyrillic,cyrillic-ext'; elseif ( 'greek' == $roboto_subset ) $roboto_subsets .= ',greek,greek-ext'; elseif ( 'vietnamese' == $roboto_subset ) $roboto_subsets .= ',vietnamese'; $roboto_query_args = array( 'family' => 'Roboto:400italic,700italic,400,700', 'subset' => $roboto_subsets, ); wp_register_style( 'chalkboard-roboto', add_query_arg( $roboto_query_args, "https://fonts.googleapis.com/css" ), array(), null ); } } add_action( 'init', 'chalkboard_fonts' ); /** * Enqueue scripts and styles */ function chalkboard_scripts() { wp_enqueue_style( 'style', get_stylesheet_uri() ); wp_enqueue_script( 'small-menu', get_template_directory_uri() . '/js/small-menu.js', array( 'jquery' ), '20120206', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) wp_enqueue_script( 'comment-reply' ); if ( is_singular() && wp_attachment_is_image() ) wp_enqueue_script( 'keyboard-image-navigation', get_template_directory_uri() . '/js/keyboard-image-navigation.js', array( 'jquery' ), '20120202' ); wp_enqueue_style( 'chalkboard-gloria' ); wp_enqueue_style( 'chalkboard-roboto' ); } add_action( 'wp_enqueue_scripts', 'chalkboard_scripts' ); /** * Enqueue font styles in custom header admin */ function chalkboard_admin_fonts( $hook_suffix ) { if ( 'appearance_page_custom-header' != $hook_suffix ) return; wp_enqueue_style( 'chalkboard-gloria' ); } add_action( 'admin_enqueue_scripts', 'chalkboard_admin_fonts' ); /** * 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';