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' ); // This theme uses wp_nav_menu() in two locations. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'bassist' ), 'social' => esc_html__( 'Social Links Menu', 'bassist' ), ) ); /* * 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( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link', 'gallery', 'status', 'audio', 'chat', ) ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, icons, and column width. */ add_editor_style( array( 'css/editor-style.css', 'css/font-awesome.css' ) ); // Add theme support for Custom Header add_theme_support( 'custom-header', array( 'default-image' => '', 'default-text-color' => '000000', 'width' => 1920, 'height' => 112, 'header-text' => true, 'wp-head-callback' => 'bassist_header_style', ) ); // Add theme support for Custom Background add_theme_support( 'custom-background', array( 'default-color' => 'f9f9f9', ) ); // Add theme support for Custom Logo add_theme_support( 'custom-logo', array( 'width' => 450, 'height' => 150, 'flex-width' => true, 'flex-height' => false, ) ); } endif; add_action( 'after_setup_theme', 'bassist_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 bassist_content_width() { $GLOBALS['content_width'] = apply_filters( 'bassist_content_width', 1200 ); } add_action( 'after_setup_theme', 'bassist_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function bassist_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'bassist' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'bassist' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'bassist_widgets_init' ); /** * Enqueue scripts and styles. */ function bassist_scripts() { // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'bassist-style', get_stylesheet_uri() ); wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/css/font-awesome.css'); wp_enqueue_script( 'bassist-scripts', get_template_directory_uri() . '/js/functions.js', array('jquery'), '20151215', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'bassist_scripts' ); /** * Adds custom classes to the array of body classes. * * @since Bassist 1.0 * @param array $classes Classes for the body element. * @return array */ function bassist_body_classes( $classes ) { // Adds a class of group-blog to blogs with more than 1 published author. if ( is_multi_author() ) { $classes[] = 'group-blog'; } // Adds a class of hfeed to non-singular pages. if ( ! is_singular() ) { $classes[] = 'hfeed'; } // Adds a class of no-sidebar to sites without active sidebar. if ( ! is_active_sidebar( 'sidebar-1' ) ) { $classes[] = 'no-sidebar'; } // Adds a class of front-page if a static front page is selected. if ( 'page' === get_option( 'show_on_front' ) && is_front_page() ) { $classes[] = 'front-page'; } return $classes; } add_filter( 'body_class', 'bassist_body_classes' ); /** * Adds custom classes to the array of post classes. * * @since Bassist 1.0.2 * * @param array $classes Classes for the post element. * @return array (Maybe) filtered post classes. */ function bassist_post_classes( $classes ) { // Adds a class of post-format to post with special formats (video, image, chat, aside, etc). if ( ! get_post_format() ) { $classes[] = 'standard'; } return $classes; } add_filter( 'post_class', 'bassist_post_classes' ); /** * 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'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Color calculations. */ require get_template_directory() . '/inc/color-calculations.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php';