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' ); /* * 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', 'business-center' ), 'social-link' => esc_html__( 'Social Link', 'business-center' ), ) ); /* * 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( 'business_center_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); // Add custom image size add_image_size( 'business-center-blog', 500, 375, true ); add_theme_support( 'custom-logo' ); // Declare 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' ); } } /* * 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.min.css', business_center_fonts_url() ) ); // Gutenberg support add_theme_support( 'editor-color-palette', array( array( 'name' => esc_html__( 'Blue', 'business-center' ), 'slug' => 'blue', 'color' => '#2c7dfa', ), array( 'name' => esc_html__( 'Green', 'business-center' ), 'slug' => 'green', 'color' => '#07d79c', ), array( 'name' => esc_html__( 'Yellow', 'business-center' ), 'slug' => 'yellow', 'color' => '#FDD947', ), array( 'name' => esc_html__( 'Black', 'business-center' ), 'slug' => 'black', 'color' => '#2f3633', ), array( 'name' => esc_html__( 'Grey', 'business-center' ), 'slug' => 'grey', 'color' => '#82868b', ), )); add_theme_support( 'align-wide' ); add_theme_support( 'editor-font-sizes', array( array( 'name' => esc_html__( 'small', 'business-center' ), 'shortName' => esc_html__( 'S', 'business-center' ), 'size' => 12, 'slug' => 'small' ), array( 'name' => esc_html__( 'regular', 'business-center' ), 'shortName' => esc_html__( 'M', 'business-center' ), 'size' => 16, 'slug' => 'regular' ), array( 'name' => esc_html__( 'larger', 'business-center' ), 'shortName' => esc_html__( 'L', 'business-center' ), 'size' => 36, 'slug' => 'larger' ), array( 'name' => esc_html__( 'huge', 'business-center' ), 'shortName' => esc_html__( 'XL', 'business-center' ), 'size' => 48, 'slug' => 'huge' ) )); add_theme_support('editor-styles'); add_theme_support( 'wp-block-styles' ); } endif; add_action( 'after_setup_theme', 'business_center_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 business_center_content_width() { global $content_width; $sidebar_position = business_center_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; } $GLOBALS['content_width'] = apply_filters( 'business_center_content_width', $content_width ); add_theme_support('disable-custom-font-sizes'); } add_action( 'after_setup_theme', 'business_center_content_width', 0 ); if ( ! function_exists( 'business_center_fonts_url' ) ) : /** * Register Google fonts * * @return string Google fonts URL for the theme. */ function business_center_fonts_url() { $fonts_url = ''; $fonts = array(); $subsets = 'latin,latin-ext'; /* translators: If there are characters in your language that are not supported by Open Sans, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Open Sans font: on or off', 'business-center' ) ) { $fonts[] = 'Open Sans:300,400,600,700'; } /* translators: If there are characters in your language that are not supported by Montserrat Sans, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Montserrat font: on or off', 'business-center' ) ) { $fonts[] = 'Montserrat:400,700'; } /* translators: If there are characters in your language that are not supported by Courgette, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Courgette font: on or off', 'business-center' ) ) { $fonts[] = 'Courgette:400'; } /* 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', 'business-center' ) ) { $fonts[] = 'Roboto:400,500,300'; } /* translators: If there are characters in your language that are not supported by Raleway, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Raleway font: on or off', 'business-center' ) ) { $fonts[] = 'Raleway:400,100,300,500,600,700'; } /* translators: If there are characters in your language that are not supported by Poppins, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Poppins font: on or off', 'business-center' ) ) { $fonts[] = 'Poppins:400,500,600'; } /* translators: If there are characters in your language that are not supported by Josefin Slab, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Josefin Slab font: on or off', 'business-center' ) ) { $fonts[] = 'Josefin Slab:400,500,600'; } if ( $fonts ) { $fonts_url = add_query_arg( array( 'family' => urlencode( implode( '|', $fonts ) ), 'subset' => urlencode( $subsets ), ), 'https://fonts.googleapis.com/css' ); } return $fonts_url; } endif; /** * Enqueue scripts and styles. */ function business_center_scripts() { // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'business-center-fonts', wptt_get_webfont_url( business_center_fonts_url() ), array(), null ); // Load font awesome css wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/assets/plugins/css/font-awesome.min.css', '', '4.6.3' ); // Load slick theme css wp_enqueue_style( 'slick-theme', get_template_directory_uri() . '/assets/plugins/css/slick-theme.min.css' ); // Load slick css wp_enqueue_style( 'slick', get_template_directory_uri() . '/assets/plugins/css/slick.min.css' ); // blocks wp_enqueue_style( 'business-center-blocks', get_template_directory_uri() . '/assets/css/blocks.min.css' ); // Load theme style wp_enqueue_style( 'business-center-style', get_stylesheet_uri() ); wp_enqueue_script( 'business-center-navigation', get_template_directory_uri() . '/assets/js/navigation.min.js', array(), '20151215', true ); // Load slick js wp_enqueue_script( 'jquery-slick', get_template_directory_uri() . '/assets/plugins/js/slick.min.js', array( 'jquery' ), '1.6.0', true ); wp_enqueue_script( 'business-center-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/skip-link-focus-fix.min.js', array(), '20151215', true ); // Load custom js wp_enqueue_script( 'business-center-custom', get_template_directory_uri() . '/assets/js/custom.min.js', array( 'jquery' ), '', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'business_center_scripts' ); /** * Enqueue editor styles for Gutenberg * * @since Business Center 1.0.0 */ function business_center_block_editor_styles() { // Block styles. wp_enqueue_style( 'business-center-block-editor-style', get_theme_file_uri( '/assets/css/editor-blocks.min.css' ) ); // Add custom fonts. wp_enqueue_style( 'business-center-fonts', wptt_get_webfont_url( business_center_fonts_url() ), array(), null ); } add_action( 'enqueue_block_editor_assets', 'business_center_block_editor_styles' ); /** * Theme core files additions. */ require get_template_directory() . '/inc/core.php';