tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); add_theme_support( 'register_block_pattern' ); add_theme_support( 'register_block_style' ); add_theme_support( "responsive-embeds" ); // add woocommerce support add_theme_support( 'woocommerce' ); if ( class_exists( 'WooCommerce' ) ) { global $woocommerce; if( version_compare( $woocommerce->version, '3.0.0', ">=" ) ) { add_theme_support( 'wc-product-gallery-zoom' ); add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); } } // Enable support for footer widgets. add_theme_support( 'footer-widgets', 4 ); add_theme_support( "responsive-embeds" ); // Load Footer Widget Support. require_if_theme_supports( 'footer-widgets', get_template_directory() . '/inc/footer-widgets.php' ); /* * 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' ); set_post_thumbnail_size( 600, 450, true ); // Set the default content width. $GLOBALS['content_width'] = 525; // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary', 'bloguide' ), 'social' => esc_html__( 'Social', 'bloguide' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'comment-form', 'comment-list', 'gallery', 'caption', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'bloguide_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); // This setup supports logo, site-title & site-description add_theme_support( 'custom-logo', array( 'height' => 70, 'width' => 120, 'flex-height' => true, 'flex-width' => true, 'header-text' => array( 'site-title', 'site-description' ), ) ); // Add theme support for selective refresh for widgets. 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. */ add_editor_style( array( '/assets/css/editor-style' . bloguide_min() . '.css', bloguide_fonts_url() ) ); // Gutenberg support add_theme_support( 'editor-color-palette', array( array( 'name' => esc_html__( 'Blue', 'bloguide' ), 'slug' => 'blue', 'color' => '#2c7dfa', ), array( 'name' => esc_html__( 'Green', 'bloguide' ), 'slug' => 'green', 'color' => '#07d79c', ), array( 'name' => esc_html__( 'Orange', 'bloguide' ), 'slug' => 'orange', 'color' => '#ff8737', ), array( 'name' => esc_html__( 'Black', 'bloguide' ), 'slug' => 'black', 'color' => '#2f3633', ), array( 'name' => esc_html__( 'Grey', 'bloguide' ), 'slug' => 'grey', 'color' => '#82868b', ), )); add_theme_support( 'align-wide' ); add_theme_support( 'editor-font-sizes', array( array( 'name' => esc_html__( 'small', 'bloguide' ), 'shortName' => esc_html__( 'S', 'bloguide' ), 'size' => 12, 'slug' => 'small' ), array( 'name' => esc_html__( 'regular', 'bloguide' ), 'shortName' => esc_html__( 'M', 'bloguide' ), 'size' => 16, 'slug' => 'regular' ), array( 'name' => esc_html__( 'larger', 'bloguide' ), 'shortName' => esc_html__( 'L', 'bloguide' ), 'size' => 36, 'slug' => 'larger' ), array( 'name' => esc_html__( 'huge', 'bloguide' ), 'shortName' => esc_html__( 'XL', 'bloguide' ), 'size' => 48, 'slug' => 'huge' ) )); add_theme_support('editor-styles'); add_theme_support( 'wp-block-styles' ); } endif; add_action( 'after_setup_theme', 'bloguide_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 bloguide_content_width() { $content_width = $GLOBALS['content_width']; $sidebar_position = bloguide_layout(); switch ( $sidebar_position ) { case 'no-sidebar': $content_width = 1170; break; case 'left-sidebar': case 'right-sidebar': $content_width = 819; break; default: break; } if ( ! is_active_sidebar( 'sidebar-1' ) ) { $content_width = 1170; } /** * Filter Bloguide content width of the theme. * * @since Bloguide 1.0.0 * * @param int $content_width Content width in pixels. */ $GLOBALS['content_width'] = apply_filters( 'bloguide_content_width', $content_width ); } add_action( 'template_redirect', 'bloguide_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function bloguide_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'bloguide' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'bloguide' ), 'before_widget' => '', 'before_title' => '