luzuk_baker_shop_add( 'WPTRT\\Customize\\Section', get_theme_file_path( 'vendor/wptrt/customize-section-button/src' ) ); $Luzuk_Baker_Shop_Loader->luzuk_baker_shop_register(); function luzuk_baker_shop_setup() { load_theme_textdomain( 'baker-shop', get_template_directory() . '/languages' ); add_theme_support( 'automatic-feed-links' ); add_theme_support( 'title-tag' ); add_theme_support( 'responsive-embeds' ); add_theme_support( 'html5', array( 'comment-list', 'search-form', 'comment-form', ) ); add_theme_support( 'woocommerce' ); add_theme_support( 'post-thumbnails' ); add_theme_support( 'custom-background', $defaults = array( 'default-color' => '', 'default-image' => '', 'default-repeat' => '', 'default-position-x' => '', 'default-attachment' => '', 'wp-head-callback' => '_custom_background_cb', 'admin-head-callback' => '', 'admin-preview-callback' => '' )); $GLOBALS['content_width'] = 525; register_nav_menus( array( 'primary' => __( 'Primary Menu', 'baker-shop' ), ) ); // Add theme support for Custom Logo. add_theme_support( 'custom-logo', array( 'width' => 250, 'height' => 250, 'flex-width' => true, ) ); // 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, and column width. */ add_editor_style( array( 'assets/css/editor-style.css' ) ); } add_action( 'after_setup_theme', 'luzuk_baker_shop_setup' ); function luzuk_baker_shop_widgets_init() { register_sidebar( array( 'name' => __( 'Blog Sidebar', 'baker-shop' ), 'id' => 'sidebar-1', 'description' => __( 'Add widgets here to appear in your sidebar on blog posts and archive pages.', 'baker-shop' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Sidebar 2', 'baker-shop' ), 'id' => 'sidebar-2', 'description' => __( 'Add widgets here to appear in your pages and posts', 'baker-shop' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Sidebar 3', 'baker-shop' ), 'id' => 'sidebar-3', 'description' => __( 'Add widgets here to appear in your pages and posts', 'baker-shop' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer 1', 'baker-shop' ), 'id' => 'footer-1', 'description' => __( 'Add widgets here to appear in your footer.', 'baker-shop' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer 2', 'baker-shop' ), 'id' => 'footer-2', 'description' => __( 'Add widgets here to appear in your footer.', 'baker-shop' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer 3', 'baker-shop' ), 'id' => 'footer-3', 'description' => __( 'Add widgets here to appear in your footer.', 'baker-shop' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer 4', 'baker-shop' ), 'id' => 'footer-4', 'description' => __( 'Add widgets here to appear in your footer.', 'baker-shop' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'luzuk_baker_shop_widgets_init' ); function luzuk_baker_shop_fonts_url(){ $font_url = ''; $font_family = array(); $font_family[] = 'Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i'; $query_args = array( 'family' => rawurlencode(implode('|',$font_family)), ); $font_url = add_query_arg($query_args,'//fonts.googleapis.com/css'); return $font_url; } function luzuk_enqueue_google_fonts() { wp_enqueue_style('google-fonts', 'https://fonts.googleapis.com/css?family=Jost:400,500,700&display=swap'); } add_action('wp_enqueue_scripts', 'luzuk_enqueue_google_fonts'); //Enqueue scripts and styles. function luzuk_baker_shop_scripts() { // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'baker-shop-fonts', luzuk_baker_shop_fonts_url(), array(), null ); //Bootstarp wp_enqueue_style( 'bootstrap-css', get_template_directory_uri().'/assets/css/bootstrap.css' ); // Theme stylesheet. wp_enqueue_style( 'baker-shop-basic-style', get_stylesheet_uri() ); // Load the Internet Explorer 9 specific stylesheet, to fix display issues in the Customizer. if ( is_customize_preview() ) { wp_enqueue_style( 'baker-shop-ie9', get_theme_file_uri( '/assets/css/ie9.css' ), array( 'baker-shop-style' ), '1.0' ); wp_style_add_data( 'baker-shop-ie9', 'conditional', 'IE 9' ); } // Load the Internet Explorer 8 specific stylesheet. wp_enqueue_style( 'baker-shop-ie8', get_theme_file_uri( '/assets/css/ie8.css' ), array( 'baker-shop-style' ), '1.0' ); wp_style_add_data( 'baker-shop-ie8', 'conditional', 'lt IE 9' ); //font-awesome wp_enqueue_style( 'font-awesome-css', get_template_directory_uri().'/assets/css/fontawesome-all.css' ); wp_enqueue_style('custom-animations', get_template_directory_uri() . '/assets/css/animations.css'); require get_parent_theme_file_path( '/lz-custom-style.php' ); wp_add_inline_style( 'baker-shop-basic-style',$luzuk_baker_shop_custom_style ); wp_enqueue_script( 'index-js', get_theme_file_uri( '/assets/js/index.js' ), array( 'jquery' ), '2.1.2', true ); wp_enqueue_script( 'baker-shop-navigation-jquery', get_theme_file_uri( '/assets/js/navigation.js' ), array( 'jquery' ), '2.1.2', true ); wp_enqueue_script( 'bootstrap-js', get_template_directory_uri(). '/assets/js/bootstrap.js', array('jquery') ); wp_enqueue_script( 'jquery-superfish', get_template_directory_uri(). '/assets/js/jquery.superfish.js', array('jquery') ,'',true); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'luzuk_baker_shop_scripts' ); function luzuk_baker_shop_front_page_template( $template ) { return is_home() ? '' : $template; } add_filter( 'frontpage_template', 'luzuk_baker_shop_front_page_template' ); function luzuk_baker_shop_sanitize_dropdown_pages( $page_id, $setting ) { // Ensure $input is an absolute integer. $page_id = absint( $page_id ); // If $page_id is an ID of a published page, return it; otherwise, return the default. return ( 'publish' == get_post_status( $page_id ) ? $page_id : $setting->default ); } function luzuk_baker_shop_sanitize_choices( $input, $setting ) { global $wp_customize; $control = $wp_customize->get_control( $setting->id ); if ( array_key_exists( $input, $control->choices ) ) { return $input; } else { return $setting->default; } } function luzuk_baker_shop_sanitize_checkbox( $input ) { return ( ( isset( $input ) && true == $input ) ? true : false ); } function luzuk_baker_shop_sanitize_phone_number( $phone ) { return preg_replace( '/[^\d+]/', '', $phone ); } function luzuk_baker_shop_sanitize_float( $input ) { return filter_var($input, FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); } /* Excerpt Limit Begin */ function luzuk_baker_shop_string_limit_words($string, $word_limit) { $words = explode(' ', $string, ($word_limit + 1)); if(count($words) > $word_limit) array_pop($words); return implode(' ', $words); } // Change number or products per row to 3 add_filter('loop_shop_columns', 'luzuk_baker_shop_loop_columns'); if (!function_exists('luzuk_baker_shop_loop_columns')) { function luzuk_baker_shop_loop_columns() { return 3; // 3 products per row } } /* Breadcrumb Begin */ function luzuk_baker_shop_breadcrumb() { if (!is_home()) { echo ''; bloginfo('name'); echo ""; if (is_category() || is_single()) { the_category(', '); if (is_single()) { echo " "; the_title(); echo ""; } } elseif (is_page()) { echo ""; the_title(); echo " "; } } } function luzuk_baker_shop_banner_image( $image_url ){ global $post; if( is_singular() ){ $image_url = get_the_post_thumbnail_url( $post->ID, 'full' ); } return $image_url; } require get_parent_theme_file_path( '/inc/custom-header.php' ); require get_parent_theme_file_path( '/inc/template-tags.php' ); require get_parent_theme_file_path( '/inc/template-functions.php' ); require get_parent_theme_file_path( '/inc/customizer.php' ); require get_parent_theme_file_path( '/inc/font-awesome-icons.php' ); require get_parent_theme_file_path( '/inc/wptt-webfont-loader.php' ); // Custom page walker. require get_template_directory() . '/classes/class-Baker_Shop-walker-page.php'; add_action('admin_menu', 'luzuk_baker_shop_reorder_appearance_menu', 999); function luzuk_baker_shop_reorder_appearance_menu() { global $submenu; if (isset($submenu['themes.php'])) { $themes_submenu = $submenu['themes.php']; // Find and extract the Themes Dashboard item foreach ($themes_submenu as $key => $item) { if ($item[2] === 'themes-dashboard') { $dashboard_item = $item; unset($themes_submenu[$key]); break; } } // Re-index and add Themes Dashboard at the top if (isset($dashboard_item)) { $themes_submenu = array_values($themes_submenu); // reindex array_unshift($themes_submenu, $dashboard_item); $submenu['themes.php'] = $themes_submenu; } } } // Hook into current_screen to detect if we're on our custom page add_action('current_screen', 'luzuk_baker_shop_hide_admin_notices_on_custom_page'); function luzuk_baker_shop_hide_admin_notices_on_custom_page($screen) { // Check for our custom page slug if ($screen->id === 'appearance_page_themes-dashboard') { // Remove all actions that show admin notices remove_all_actions('admin_notices'); remove_all_actions('all_admin_notices'); remove_all_actions('network_admin_notices'); } } add_action('admin_menu', 'luzuk_baker_shop_add_themes_dashboard_menu'); function luzuk_baker_shop_add_themes_dashboard_menu() { add_theme_page( 'Themes Dashboard', 'Themes Dashboard', 'manage_options', 'themes-dashboard', 'luzuk_baker_shop_themes_dashboard_page' ); } function luzuk_baker_shop_themes_dashboard_page() { echo luzuk_baker_shop_render_combined_dashboard(); } function luzuk_baker_shop_render_combined_dashboard() { $theme = wp_get_theme(); $theme_name = $theme->get('Name'); $screenshot = $theme->get_screenshot(); $theme_description = $theme->get('Description'); $theme_version = $theme->get('Version'); $customize_url = admin_url('customize.php'); // Dashboard file $dashboard_url = 'https://raw.githubusercontent.com/LuzukThemes/themes-dashboard/main/dashboard.html'; $dashboard_response = wp_remote_get($dashboard_url); $dashboard_html = ''; if (!is_wp_error($dashboard_response)) { $dashboard_html = wp_remote_retrieve_body($dashboard_response); } else { $dashboard_html = '

Unable to load Dashboard content from GitHub.

'; } // Coupon file $coupon_url = 'https://raw.githubusercontent.com/LuzukThemes/themes-dashboard/main/coupon.html'; $coupon_response = wp_remote_get($coupon_url); $coupon_html = ''; if (!is_wp_error($coupon_response)) { $coupon_html = wp_remote_retrieve_body($coupon_response); } else { $coupon_html = '

Unable to load Coupon content from GitHub.

'; } ob_start(); ?>

Themes Dashboard

Use this coupon code and get 15% discount instantly FREEWORDTHEME

Theme Screenshot

Version:

Live Demo Pro Documentation Need Support Buy Premium
UPGRADE NOW