esc_html__( 'Primary Menu', 'best-commerce' ),
'footer' => esc_html__( 'Footer Menu', 'best-commerce' ),
'social' => esc_html__( 'Social Menu', 'best-commerce' ),
) );
// Add support for HTML5 markup.
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( 'best_commerce_custom_background_args', array(
'default-color' => 'F1F0F0',
'default-image' => '',
) ) );
// Enable support for selective refresh of widgets in Customizer.
add_theme_support( 'customize-selective-refresh-widgets' );
// Enable support for custom logo.
add_theme_support( 'custom-logo', array(
'width' => 300,
'height' => 150,
'flex-width' => true,
'flex-height' => true,
) );
// Enable support for WooCommerce.
add_theme_support( 'woocommerce' );
add_theme_support( 'wc-product-gallery-lightbox' );
// Enable support for Custom Header.
add_theme_support( 'custom-header', apply_filters( 'best_commerce_custom_header_args', array(
'default-image' => '',
'width' => 1920,
'height' => 490,
'flex-height' => true,
'header-text' => false,
) ) );
}
endif;
add_action( 'after_setup_theme', 'best_commerce_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 best_commerce_content_width() {
$GLOBALS['content_width'] = apply_filters( 'best_commerce_content_width', 640 );
}
add_action( 'after_setup_theme', 'best_commerce_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function best_commerce_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Primary Sidebar', 'best-commerce' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here to appear in your Primary Sidebar.', 'best-commerce' ),
'before_widget' => '',
'before_title' => '
',
) );
register_sidebar( array(
'name' => esc_html__( 'Secondary Sidebar', 'best-commerce' ),
'id' => 'sidebar-2',
'description' => esc_html__( 'Add widgets here to appear in your Secondary Sidebar.', 'best-commerce' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Featured Widget Area', 'best-commerce' ),
'id' => 'sidebar-featured-widget-area',
'description' => esc_html__( 'Add widgets here to appear in your Featured Carousel section.', 'best-commerce' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => sprintf( esc_html__( 'Footer %d', 'best-commerce' ), 1 ),
'id' => 'footer-1',
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => sprintf( esc_html__( 'Footer %d', 'best-commerce' ), 2 ),
'id' => 'footer-2',
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => sprintf( esc_html__( 'Footer %d', 'best-commerce' ), 3 ),
'id' => 'footer-3',
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => sprintf( esc_html__( 'Footer %d', 'best-commerce' ), 4 ),
'id' => 'footer-4',
'before_widget' => '',
'before_title' => '',
) );
}
add_action( 'widgets_init', 'best_commerce_widgets_init' );
/**
* Enqueue scripts and styles.
*/
function best_commerce_scripts() {
$min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/vendors/font-awesome/css/font-awesome' . $min . '.css', '', '4.7.0' );
$fonts_url = best_commerce_fonts_url();
if ( ! empty( $fonts_url ) ) {
wp_enqueue_style( 'best-commerce-google-fonts', $fonts_url, array(), null );
}
wp_enqueue_style( 'jquery-sidr', get_template_directory_uri() . '/vendors/sidr/css/jquery.sidr.dark' . $min . '.css', '', '2.2.1' );
wp_enqueue_style( 'jquery-slick', get_template_directory_uri() . '/vendors/slick/slick' . $min . '.css', '', '1.5.9' );
wp_enqueue_style( 'best-commerce-style', get_stylesheet_uri(), array(), '1.0.5' );
wp_enqueue_script( 'best-commerce-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix' . $min . '.js', array(), '20130115', true );
wp_enqueue_script( 'jquery-sidr', get_template_directory_uri() . '/vendors/sidr/js/jquery.sidr' . $min . '.js', array( 'jquery' ), '2.2.1', true );
wp_enqueue_script( 'jquery-slick', get_template_directory_uri() . '/vendors/slick/slick' . $min . '.js', array( 'jquery' ), '1.5.9', true );
wp_enqueue_script( 'best-commerce-custom', get_template_directory_uri() . '/js/custom' . $min . '.js', array( 'jquery' ), '1.0.0', true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'best_commerce_scripts' );
// Load starting file.
require_once trailingslashit( get_template_directory() ) . 'includes/start.php';