get( 'Version' ) ); if( ! defined( 'BURGER_JOINT_THEME_NAME' ) ) define( 'BURGER_JOINT_THEME_NAME', $burger_joint_theme_data->get( 'Name' ) ); if( ! defined( 'BURGER_JOINT_THEME_TEXTDOMAIN' ) ) define( 'BURGER_JOINT_THEME_TEXTDOMAIN', $burger_joint_theme_data->get( 'TextDomain' ) ); if ( ! defined( 'BURGER_JOINT_VERSION' ) ) { define( 'BURGER_JOINT_VERSION', '1.0.0' ); } if ( ! function_exists( 'burger_joint_setup' ) ) : function burger_joint_setup() { load_theme_textdomain( 'burger-joint', get_template_directory() . '/languages' ); add_theme_support( 'automatic-feed-links' ); add_theme_support( 'title-tag' ); add_theme_support( 'woocommerce' ); add_theme_support( 'post-thumbnails' ); register_nav_menus( array( 'primary' => esc_html__( 'Primary', 'burger-joint' ), ) ); add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', 'style', 'script', 'woocommerce', ) ); add_theme_support( 'post-formats', array( 'image', 'video', 'gallery', 'audio', ) ); add_theme_support( 'custom-background', apply_filters( 'burger_joint_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); add_theme_support( 'customize-selective-refresh-widgets' ); add_theme_support( 'custom-logo', array( 'height' => 250, 'width' => 250, 'flex-width' => true, 'flex-height' => true, ) ); add_theme_support( 'align-wide' ); add_theme_support( 'responsive-embeds' ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, icons, and column width. */ add_editor_style( '/resource/css/editor-style.css' ); } endif; add_action( 'after_setup_theme', 'burger_joint_setup' ); function burger_joint_content_width() { $GLOBALS['content_width'] = apply_filters( 'burger_joint_content_width', 640 ); } add_action( 'after_setup_theme', 'burger_joint_content_width', 0 ); function burger_joint_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'burger-joint' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'burger-joint' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); $burger_joint_footer_widget_column = get_theme_mod('burger_joint_footer_widget_column','4'); for ($burger_joint_i=1; $burger_joint_i<=$burger_joint_footer_widget_column; $burger_joint_i++) { register_sidebar( array( 'name' => __( 'Footer ', 'burger-joint' ) . $burger_joint_i, 'id' => 'burger-joint-footer-widget-' . $burger_joint_i, 'description' => __( 'The Footer Widget Area', 'burger-joint' ) . $burger_joint_i, 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } } add_action( 'widgets_init', 'burger_joint_widgets_init' ); /** * Enqueue scripts and styles. */ function burger_joint_scripts() { // Append .min if SCRIPT_DEBUG is false. $min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; // Slick style. wp_enqueue_style( 'burger-joint-slick-style', get_template_directory_uri() . '/resource/css/slick' . $min . '.css', array(), '1.8.1' ); // Fontawesome style. wp_enqueue_style( 'font-awesome-css', esc_url(get_template_directory_uri())."/resource/css/fontawesome-all.css" ); // Main style. wp_enqueue_style( 'burger-joint-style', get_template_directory_uri() . '/style.css', array(), BURGER_JOINT_VERSION ); // RTL style. wp_style_add_data('burger-joint-style', 'rtl', 'replace'); // Animate CSS wp_enqueue_style( 'animate-style', get_template_directory_uri() . '/resource/css/animate.css' ); // Navigation script. wp_enqueue_script( 'burger-joint-navigation-script', get_template_directory_uri() . '/resource/js/navigation.js', array(), BURGER_JOINT_VERSION, true ); // Slick script. wp_enqueue_script( 'burger-joint-slick-script', get_template_directory_uri() . '/resource/js/slick' . $min . '.js', array( 'jquery' ), '1.8.1', true ); // Custom script. wp_enqueue_script( 'burger-joint-custom-script', get_template_directory_uri() . '/resource/js/custom.js', array( 'jquery' ), BURGER_JOINT_VERSION, true ); // Wow script. wp_enqueue_script( 'wow-jquery', get_template_directory_uri() . '/resource/js/wow.js', array('jquery'),'' ,true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } // Include the file. require_once get_theme_file_path( 'theme-library/function-files/wptt-webfont-loader.php' ); } add_action( 'wp_enqueue_scripts', 'burger_joint_scripts' ); //Change number of products per page add_filter( 'loop_shop_per_page', 'burger_joint_products_per_page' ); function burger_joint_products_per_page( $cols ) { return get_theme_mod( 'burger_joint_products_per_page',9); } // Change number or products per row add_filter('loop_shop_columns', 'burger_joint_loop_columns'); if (!function_exists('burger_joint_loop_columns')) { function burger_joint_loop_columns() { return get_theme_mod( 'burger_joint_products_per_row', 3 ); } } /** * Implement the Custom Header feature. */ require get_template_directory() . '/theme-library/custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/theme-library/function-files/template-tags.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require get_template_directory() . '/theme-library/function-files/template-functions.php'; /** * Customizer additions. */ require get_template_directory() . '/theme-library/customizer.php'; /** * Breadcrumb */ require get_template_directory() . '/theme-library/function-files/class-breadcrumb-trail.php'; /** * Google Fonts */ require get_template_directory() . '/theme-library/function-files/google-fonts.php'; /** * Dynamic CSS */ require get_template_directory() . '/theme-library/dynamic-css.php'; /** * Getting Started */ require get_template_directory() . '/theme-library/getting-started/getting-started.php'; /** * Load TGM. */ require get_template_directory() . '/resource/tgm/tgm.php'; /** * Theme Wizard */ add_action( 'init', 'burger_joint_load_theme_wizard' ); function burger_joint_load_theme_wizard() { require get_parent_theme_file_path( '/theme-wizard/config.php' ); } // Enqueue Customizer live preview script function burger_joint_customizer_live_preview() { wp_enqueue_script( 'burger-joint-customizer', get_template_directory_uri() . '/js/customizer.js', array('jquery', 'customize-preview'), '', true ); } add_action('customize_preview_init', 'burger_joint_customizer_live_preview'); // Featured Image Dimension function burger_joint_blog_post_featured_image_dimension(){ if(get_theme_mod('burger_joint_blog_post_featured_image_dimension') == 'custom' ) { return true; } return false; } /** * Customizer Settings Functions */ require get_template_directory() . '/theme-library/function-files/customizer-settings-functions.php';