parent()->get('Version')); wp_enqueue_style( 'bakers-bakery-style', get_stylesheet_uri(), array( $parentcss ), $theme->get('Version')); wp_enqueue_style( 'bakers-bakery-style', get_stylesheet_uri(), array( $parentcss ) ); require get_theme_file_path( '/custom-option.php' ); wp_add_inline_style( 'bakers-bakery-style',$cake_shop_bakery_theme_css ); require get_parent_theme_file_path( '/custom-option.php' ); wp_add_inline_style( 'cake-shop-bakery-basic-style',$cake_shop_bakery_theme_css ); wp_enqueue_script( 'comment-reply', '/wp-includes/js/comment-reply.min.js', array(), false, true ); wp_enqueue_style( 'flatly-css', esc_url(get_template_directory_uri()) . '/assets/css/flatly.css'); } add_action( 'wp_enqueue_scripts', 'bakers_bakery_enqueue_styles' ); function bakers_bakery_admin_scripts() { // demo CSS wp_enqueue_style( 'bakers-bakery-demo-css', get_theme_file_uri( 'assets/css/demo.css' ) ); } add_action( 'admin_enqueue_scripts', 'bakers_bakery_admin_scripts' ); if ( ! function_exists( 'bakers_bakery_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ function bakers_bakery_setup() { add_theme_support( 'responsive-embeds' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * 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' ); add_image_size('bakers-bakery-featured-header-image', 2000, 660, true); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. * 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( 'cake_shop_bakery_custom_background_args', array( 'default-color' => '', 'default-image' => '', ) ) ); /** * Add support for core custom logo. * * @link https://codex.wordpress.org/Theme_Logo */ add_theme_support( 'custom-logo', array( 'height' => 50, 'width' => 50, 'flex-width' => true, ) ); add_editor_style( array( '/editor-style.css' ) ); add_theme_support( 'align-wide' ); add_theme_support( 'woocommerce' ); add_theme_support( 'wp-block-styles' ); } endif; add_action( 'after_setup_theme', 'bakers_bakery_setup' ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function bakers_bakery_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'bakers-bakery' ), 'id' => 'sidebar', 'description' => esc_html__( 'Add widgets here.', 'bakers-bakery' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h5 class="widget-title">', 'after_title' => '</h5>', ) ); } add_action( 'widgets_init', 'bakers_bakery_widgets_init' ); function bakers_bakery_remove_my_action() { remove_action( 'remove_menu_page','cake-shop-bakery-info' ); remove_action( 'admin_menu','demo_importer_admin_page' ); remove_action( 'admin_enqueue_scripts', 'cake_shop_bakery_getpage_css' ); remove_action( 'admin_notices', 'cake_shop_bakery_deprecated_hook_admin_notice' ); remove_action( 'remove_menu_page','cake-shop-bakery-info' ); remove_action( 'admin_menu','cake_shop_bakery_demo_importer_admin_page' ); remove_action( 'admin_notices','cake_shop_bakery_deprecated_hook_admin_notice' ); } add_action( 'after_setup_theme', 'bakers_bakery_remove_my_action'); function bakers_bakery_remove_parent_theme_hooks() { remove_action('init', 'bakers_bakery_remove_my_action'); } add_action('after_setup_theme', 'bakers_bakery_remove_parent_theme_hooks', 20); add_action('admin_menu', 'remove_my_theme_page', 999); function remove_my_theme_page() { remove_submenu_page('themes.php','cake-shop-bakery-info'); } /** * Get CSS */ function bakers_bakery_getpage_css($hook) { wp_register_script( 'admin-notice-script', get_stylesheet_directory_uri() . '/inc/admin/js/admin-notice-script.js', array( 'jquery' ) ); wp_localize_script('admin-notice-script','bakers_bakery', array('admin_ajax' => admin_url('admin-ajax.php'),'wpnonce' => wp_create_nonce('bakers_bakery_dismissed_notice_nonce') ) ); wp_enqueue_script('admin-notice-script'); wp_localize_script( 'admin-notice-script', 'bakers_bakery_ajax_object', array( 'ajax_url' => admin_url( 'admin-ajax.php' ) ) ); if ( 'appearance_page_bakers-bakery-info' != $hook ) { return; } } add_action( 'admin_enqueue_scripts', 'bakers_bakery_getpage_css' ); //Admin Notice For Getstart function bakers_bakery_ajax_notice_handler() { if ( isset( $_POST['type'] ) ) { $type = sanitize_text_field( wp_unslash( $_POST['type'] ) ); update_option( 'dismissed-' . $type, TRUE ); } } function bakers_bakery_deprecated_hook_admin_notice() { // Check if the notice has been dismissed by the user $dismissed = get_user_meta(get_current_user_id(), 'bakers_bakery_dismissable_notice', true); // Exclude the notice from being shown on the "Theme Importer" page $current_screen = get_current_screen(); if ($current_screen && $current_screen->id === 'appearance_page_theme-importer') { return; // Don't show the notice on this page } if (!$dismissed) { ?> <div class="updated notice notice-success is-dismissible notice-get-started-class" data-notice="get_started" style="background: #f7f9f9; padding: 20px 10px; display: flex;"> <div class="tm-admin-image"> <img style="width: 100%;max-width: 320px;line-height: 40px;display: inline-block;vertical-align: top;border: 2px solid #ddd;border-radius: 4px;" src="<?php echo esc_url(get_stylesheet_directory_uri()) .'/screenshot.png'; ?>" /> </div> <div class="tm-admin-content" style="padding-left: 30px; align-self: center"> <h2 style="font-weight: 600;line-height: 1.3; margin: 0px;"><?php esc_html_e('Thank You For Choosing ', 'bakers-bakery'); ?><?php echo wp_get_theme(); ?><h2> <p style="color: #3c434a; font-weight: 400; margin-bottom: 30px;"><?php _e('Get Started With Theme By Clicking On Getting Started.', 'bakers-bakery'); ?><p> <a class="admin-notice-btn button button-primary button-hero" href="<?php echo esc_url( admin_url( 'themes.php?page=bakers-bakery-info' )); ?>"><?php esc_html_e( 'Get started', 'bakers-bakery' ) ?></a> <a class="admin-notice-btn button button-primary button-hero notice-pro-btn" target="_blank" href="<?php echo esc_url( CAKE_SHOP_BAKERY_GET_PREMIUM_PRO ); ?>"><?php esc_html_e( 'Get Premium ', 'bakers-bakery' ) ?></a> <a class="admin-notice-btn button button-primary button-hero notice-bundle-btn" target="_blank" href="<?php echo esc_url( CAKE_SHOP_BAKERY_BUNDLE_LINK ); ?>"><?php esc_html_e( 'Buy All Themes - 120+ Templates', 'bakers-bakery' ) ?></a> <span style="padding-top: 15px; display: inline-block; padding-left: 8px;"> <span class="dashicons dashicons-admin-links"></span> <a class="admin-notice-btn" target="_blank" href="<?php echo esc_url( CAKE_SHOP_BAKERY_LIVE_DEMO ); ?>"><?php esc_html_e( 'View Demo', 'bakers-bakery' ) ?></a> </span> </div> </div> <?php } } add_action( 'admin_notices', 'bakers_bakery_deprecated_hook_admin_notice' ); function bakers_bakery_switch_theme() { delete_user_meta(get_current_user_id(), 'bakers_bakery_dismissable_notice'); } add_action('after_switch_theme', 'bakers_bakery_switch_theme'); function bakers_bakery_dismissable_notice() { update_user_meta(get_current_user_id(), 'bakers_bakery_dismissable_notice', true); die(); } // Demo Content Code // Ensure WordPress is loaded if (!defined('ABSPATH')) { exit; } // Add the AJAX action to trigger theme mods import add_action('wp_ajax_import_theme_mods', 'bakers_bakery_demo_importer_ajax_handler'); // Handle the AJAX request function bakers_bakery_demo_importer_ajax_handler() { // Sample data to import $theme_mods_data = array( 'header_textcolor' => '000000', // Example: change header text color 'background_color' => 'ffffff', // Example: change background color 'custom_logo' => 123, // Example: set a custom logo by attachment ID 'footer_text' => 'Custom Footer Text', // Example: custom footer text ); // Call the function to import theme mods if (bakers_bakery_demo_theme_importer($theme_mods_data)) { // After importing theme mods, create the menu bakers_bakery_create_demo_menu(); wp_send_json_success(array( 'msg' => 'Theme mods imported successfully.', 'redirect' => home_url() )); } else { wp_send_json_error('Failed to import theme mods.'); } wp_die(); } // Function to set theme mods function bakers_bakery_demo_theme_importer($import_data) { if (is_array($import_data)) { foreach ($import_data as $mod_name => $mod_value) { set_theme_mod($mod_name, $mod_value); } return true; } else { return false; } } // Function to create demo menu function bakers_bakery_create_demo_menu() { $menu_structure = [ [ 'title' => 'Home', 'slug' => 'home', 'template' => 'page-template/home-template.php', ], [ 'title' => 'Cupcake', 'slug' => 'cupcake', 'content' => "<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p> " ], [ 'title' => 'Recipes', 'slug' => 'recipes', 'content' => "<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p> " ], [ 'title' => 'Blog', 'slug' => 'blog', ], [ 'title' => 'Pages', 'slug' => 'pages', 'content' => "<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p> " ], [ 'title' => 'Contact Us', 'slug' => 'contact', 'content' => "<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p> " ], ]; // ---------------------------------------------------- // Do not modify below this line unless needed // ---------------------------------------------------- $created_pages = []; $menu_name = 'Primary Menu'; $location = 'primary'; $menu = wp_get_nav_menu_object($menu_name); $menu_id = (!$menu) ? wp_create_nav_menu($menu_name) : $menu->term_id; $create_page_and_menu = function($item, $parent_menu_id = 0, $parent_page_id = 0) use (&$create_page_and_menu, &$created_pages, $menu_id) { $page = get_page_by_title($item['title']); if (!$page) { $page_id = wp_insert_post([ 'post_title' => $item['title'], 'post_type' => 'page', 'post_status' => 'publish', 'post_name' => $item['slug'], 'post_parent' => $parent_page_id, 'post_content' => !empty($item['content']) ? $item['content'] : '', ]); if (!empty($item['template'])) { update_post_meta($page_id, '_wp_page_template', $item['template']); } } else { $page_id = $page->ID; } $created_pages[$item['title']] = $page_id; $menu_item_id = wp_update_nav_menu_item($menu_id, 0, [ 'menu-item-title' => $item['title'], 'menu-item-object' => 'page', 'menu-item-object-id' => $page_id, 'menu-item-type' => 'post_type', 'menu-item-parent-id' => $parent_menu_id, 'menu-item-status' => 'publish' ]); if (!empty($item['children'])) { foreach ($item['children'] as $child) { $create_page_and_menu($child, $menu_item_id, $page_id); } } }; foreach ($menu_structure as $item) { $create_page_and_menu($item); } if (!empty($created_pages['Home'])) { update_option('page_on_front', $created_pages['Home']); update_option('show_on_front', 'page'); } if (!empty($created_pages['Blog'])) { update_option('page_for_posts', $created_pages['Blog']); } $locations = get_theme_mod('nav_menu_locations'); $locations[$location] = $menu_id; set_theme_mod('nav_menu_locations', $locations); //Slider set_theme_mod( 'cake_shop_bakery_slider_section_setting', true ); for($i=1;$i<=3;$i++){ $title = 'Yummy sweeties delivered to your dining table!'; $content = 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.'; // Create post object $my_post = array( 'post_title' => wp_strip_all_tags( $title ), 'post_content' => $content, 'post_status' => 'publish', 'post_type' => 'page', ); // Insert the post into the database $post_id = wp_insert_post( $my_post ); if ($post_id) { // Set the theme mod for the slider page set_theme_mod('cake_shop_bakery_top_slider_page' . $i, $post_id); $image_url = get_stylesheet_directory_uri().'/assets/img/slider.png'; $image_id = media_sideload_image($image_url, $post_id, null, 'id'); if (!is_wp_error($image_id)) { // Set the downloaded image as the post's featured image set_post_thumbnail($post_id, $image_id); } } } // Categories set_theme_mod( 'cake_shop_bakery_new_product_setting', true ); set_theme_mod( 'cake_shop_bakery_new_product_title', 'This Weeks Specials' ); set_theme_mod( 'cake_shop_bakery_new_product_text', 'Try our most popular signature cupcakes and taste the difference!' ); // Products if ( class_exists( 'WooCommerce' ) ) { $review_text = array( 'Nice product', 'Good Quality Product', 'Nice Product. Must buy It.', 'I like this Product', 'Nice Product', ); for($i=1;$i<=4;$i++){ $title = array('Pink Cream Cherry Milk','Gummy Tosca Mixed Flavors','Blushing Strawberry Cream','Mystery Rose Choco'); $content = 'Lorem Ipsum has been the industrys standard dummy text ever since the 1500 when an unknown printer took a galley of type and scrambled it to make a type specimen book Lorem Ipsum has been the industrys standard dummy text ever since the 1500 when an unknown printer took a galley of type and scrambled it to make a type specimen book.'; $excerpt = 'Lorem Ipsum has been the industrys standard dummy text ever since the 1500 when an unknown printer took a galley of type and scrambled it to make a type specimen book Lorem Ipsum has been the industrys standard dummy text ever since the 1500 when an unknown printer took a galley of type and scrambled it to make a type specimen book.'; // Create post object $my_post = array( 'post_title' => wp_strip_all_tags( $title[$i-1] ), 'post_content' => $content, 'post_status' => 'publish', 'post_type' => 'product', 'post_excerpt' => $excerpt ); // Insert the post into the database $post_id = wp_insert_post( $my_post ); // array_push( $_product_ids, $post_id ); for ( $c=0; $c <= 5; $c++ ) { $comment_id = wp_insert_comment( array( 'comment_post_ID' => $post_id, 'comment_author' => get_the_author_meta( 'display_name' ), 'comment_author_email' => get_the_author_meta( 'user_email' ), 'comment_content' => $review_text[$c], 'comment_parent' => 0, 'user_id' => get_current_user_id(), // <== Important 'comment_date' => date('Y-m-d H:i:s'), 'comment_approved' => 1, ) ); update_comment_meta( $comment_id, 'rating', 3 ); } update_post_meta( $post_id, '_regular_price', "120" ); update_post_meta( $post_id, '_sale_price', "80" ); update_post_meta( $post_id, '_price', "80" ); update_post_meta($post_id, 'total_sales', '120'); update_post_meta($post_id, '_manage_stock', 'true'); update_post_meta($post_id, '_stock', '100'); $image_url = get_template_directory_uri().'/assets/images/product'.$i.'.png'; wp_set_object_terms($post_id, array('Featured'), 'product_cat'); $image_name= 'product'.$i.'.png'; $upload_dir = wp_upload_dir(); // Set upload folder $image_data= file_get_contents($image_url); // Get image data $unique_file_name = wp_unique_filename( $upload_dir['path'], $image_name ); // Generate unique name $filename= basename( $unique_file_name ); // Create image file name // Check folder permission and define file location if( wp_mkdir_p( $upload_dir['path'] ) ) { $file = $upload_dir['path'] . '/' . $filename; } else { $file = $upload_dir['basedir'] . '/' . $filename; } // Create the image file on the server file_put_contents( $file, $image_data ); // Check image file type $wp_filetype = wp_check_filetype( $filename, null ); // Set attachment data $attachment = array( 'post_mime_type' => $wp_filetype['type'], 'post_title' => sanitize_file_name( $filename ), 'post_content' => '', 'post_type' => 'product', 'post_status' => 'inherit' ); // Create the attachment $attach_id = wp_insert_attachment( $attachment, $file, $post_id ); // Include image.php require_once(ABSPATH . 'wp-admin/includes/image.php'); // Define attachment metadata $attach_data = wp_generate_attachment_metadata( $attach_id, $file ); // Assign metadata to attachment wp_update_attachment_metadata( $attach_id, $attach_data ); // And finally assign featured image to post set_post_thumbnail( $post_id, $attach_id ); } } } add_action( 'customize_register', 'bakers_bakery_override_child_theme_global_color_defaults', 20 ); function bakers_bakery_override_child_theme_global_color_defaults( $wp_customize ) { if ( $wp_customize->get_setting( 'cake_shop_bakery_first_color' ) ) { $wp_customize->get_setting( 'cake_shop_bakery_first_color' )->default = '#f784b9'; } }