tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support('title-tag'); /* * Enable support for editor style. */ add_editor_style('assets/css/editor-style.css'); /* * Enable support for custom logo. */ add_theme_support('custom-logo', array( 'height' => 70, 'width' => 220, )); /* * 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'); add_image_size('blog-way-common', 345, 225, true); // This theme uses wp_nav_menu() in one location. register_nav_menus(array( 'primary' => esc_html__('Primary', 'blog-way'), 'social' => esc_html__('Social', 'blog-way'), )); /* * 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('blog_way_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ))); // Add woocommerce support, gallery zoom, lightbox and thumbnail slider. add_theme_support('woocommerce'); add_theme_support('wc-product-gallery-zoom'); add_theme_support('wc-product-gallery-lightbox'); add_theme_support('wc-product-gallery-slider'); } endif; add_action('after_setup_theme', 'blog_way_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 blog_way_content_width() { // phpcs:ignore WPThemeReview.CoreFunctionality.PrefixAllGlobals.NonPrefixedVariableFound $GLOBALS['content_width'] = apply_filters('blog_way_content_width', 708); } add_action('after_setup_theme', 'blog_way_content_width', 0); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function blog_way_widgets_init() { register_sidebar(array( 'name' => esc_html__('Sidebar', 'blog-way'), 'id' => 'sidebar-1', 'description' => esc_html__('Add widgets here.', 'blog-way'), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'name' => esc_html__('Footer 1', 'blog-way'), 'id' => 'footer-1', 'description' => esc_html__('Add widgets here.', 'blog-way'), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'name' => esc_html__('Footer 2', 'blog-way'), 'id' => 'footer-2', 'description' => esc_html__('Add widgets here.', 'blog-way'), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'name' => esc_html__('Footer 3', 'blog-way'), 'id' => 'footer-3', 'description' => esc_html__('Add widgets here.', 'blog-way'), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'name' => esc_html__('Footer 4', 'blog-way'), 'id' => 'footer-4', 'description' => esc_html__('Add widgets here.', 'blog-way'), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); } add_action('widgets_init', 'blog_way_widgets_init'); if (!function_exists('blog_way_fonts_url')) { /** * Register Google fonts. * * @return string Google fonts URL for the theme. */ function blog_way_fonts_url() { $fonts_url = ''; $fonts = array(); $subsets = 'latin,latin-ext'; /* translators: If there are characters in your language that are not supported by Droid Serif, translate this to 'off'. Do not translate into your own language. */ if ('off' !== _x('on', 'Droid Serif: on or off', 'blog-way')) { $fonts[] = 'Droid Serif:400,700'; } if ('off' !== _x('on', 'Montserrat: on or off', 'blog-way')) { $fonts[] = 'Montserrat:400,700'; } if ($fonts) { $fonts_url = add_query_arg(array( 'family' => urlencode(implode('|', $fonts)), 'subset' => urlencode($subsets), ), 'https://fonts.googleapis.com/css'); } return $fonts_url; } } /** * Enqueue scripts and styles. */ function blog_way_scripts() { wp_enqueue_style('bootstrap', get_template_directory_uri() . '/assets/third-party/bootstrap/bootstrap.min.css'); wp_enqueue_style('meanmenu', get_template_directory_uri() . '/assets/third-party/meanmenu/meanmenu.css'); wp_enqueue_style('font-awesome', get_template_directory_uri() . '/assets/third-party/font-awesome/css/font-awesome.min.css'); wp_enqueue_style('blog-way-fonts', blog_way_fonts_url(), array(), null); wp_enqueue_style('blog-way-style', get_stylesheet_uri()); wp_enqueue_script('blog-way-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/skip-link-focus-fix.js', array(), '20161202', true); wp_enqueue_script('bootstrap', get_template_directory_uri() . '/assets/third-party/bootstrap/bootstrap.min.js', array('jquery'), '20161202', true); wp_enqueue_script('meanmenu', get_template_directory_uri() . '/assets/third-party/meanmenu/jquery.meanmenu.js', array('jquery'), '20161202', true); // Add script for sticky sidebar. $sticky_sidebar = blog_way_get_option('enable_sticky_sidebar'); if (1 == $sticky_sidebar) { wp_enqueue_script('jquery-theia-sticky-sidebar', get_template_directory_uri() . '/assets/third-party/theia-sticky-sidebar/theia-sticky-sidebar.min.js', array('jquery'), '1.0.7', true); } wp_enqueue_script('blog-way-custom', get_template_directory_uri() . '/assets/js/custom.js', array('jquery'), '20161202', true); if (is_singular() && comments_open() && get_option('thread_comments')) { wp_enqueue_script('comment-reply'); } } add_action('wp_enqueue_scripts', 'blog_way_scripts'); /** * Implement the main files. */ require get_template_directory() . '/inc/main.php'; /* Turn on wide images */ add_theme_support('align-wide');