tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for custom logo. */ add_theme_support( 'custom-logo', array( 'height' => 250, 'width' => 250, 'flex-height' => true, ) ); /* * 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 one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary', 'shapla' ), 'social-nav' => esc_html__( 'Social Link', 'shapla' ), ) ); /* * 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', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'shapla_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); // Set up the WordPress core custom header feature. add_theme_support( 'custom-header', apply_filters( 'shapla_custom_header_args', array( 'default-image' => '', 'header-text' => false, 'width' => 1920, 'height' => 500, 'flex-width' => true, 'flex-height' => true, ) ) ); // Indicate widget sidebars can use selective refresh in the Customizer. add_theme_support( 'customize-selective-refresh-widgets' ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, icons, and column width. */ $editor_style = get_template_directory_uri() . '/assets/css/editor-style.css'; add_editor_style( $editor_style ); } /** * 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 * * @since 0.1.0 */ public function content_width() { $GLOBALS['content_width'] = apply_filters( 'shapla_content_width', 910 ); } /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar * * @since 0.1.0 */ public function widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'shapla' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Widgets added to this region will appear beside the main content.', 'shapla' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Above Footer', 'shapla' ), 'id' => 'sidebar-2', 'description' => esc_html__( 'Widgets added to this region will appear beneath the main content and above the footer.', 'shapla' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } /** * Adds custom classes to the array of body classes. * * @param array $classes Classes for the body element. * * @since 0.1.0 * @return array */ public function 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'; } if( is_page_template( 'templates/full-width.php' ) ) { $classes[] = 'full-width'; } if( is_page_template( 'templates/full-screen.php' ) ) { $classes[] = 'full-screen'; } if ( ! is_page_template( array('templates/full-width.php', 'templates/full-screen.php') )) { $general_layout = get_theme_mod('general_layout', 'right-sidebar'); if ( $general_layout == 'right-sidebar' ) { $classes[] = 'right-sidebar'; } elseif ( $general_layout == 'left-sidebar' ) { $classes[] = 'left-sidebar'; } } // If our main sidebar doesn't contain widgets, // adjust the layout to be full-width. if ( ! is_active_sidebar( 'sidebar-1' ) ) { $classes[] = 'no-sidebar'; } $classes[] = 'shapla'; return $classes; } /** * Enqueue scripts and styles. * * @since 0.1.0 */ public function shapla_scripts() { // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'shapla-fonts', $this->google_fonts_url(), array(), null ); wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/assets/font-awesome/css/font-awesome.min.css', array(), '4.7.0', 'all' ); wp_enqueue_style( 'shapla-style', get_template_directory_uri() . '/style.css' ); wp_enqueue_script( 'shapla-script', get_template_directory_uri() . '/assets/js/script.min.js', array( 'jquery' ), false, true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } /** * Enqueue child theme stylesheet. * A separate function is required as the child theme css needs to be enqueued _after_ * the parent theme primary css. * * @since 0.1.0 */ public function child_scripts() { if ( is_child_theme() ) { wp_enqueue_style( 'shapla-child-style', get_stylesheet_uri(), array() ); } } /** * Register Google fonts for Shapla. * * @return string Google fonts URL for the theme. * * @since 0.1.0 */ private function google_fonts_url() { $google_fonts = apply_filters( 'shapla_google_font_families', array( 'roboto' => 'Roboto:300,400,500,400italic,500italic', 'inconsolata' => 'Inconsolata:400', ) ); $query_args = array( 'family' => urlencode( implode( '|', $google_fonts ) ), 'subset' => urlencode( 'latin,latin-ext' ), ); $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ); return $fonts_url; } } endif; return new Shapla();