esc_html__( 'Primary', 'bakery-treats' ), 'social-menu' => esc_html__('Social Menu', 'bakery-treats'), ) ); add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', 'style', 'script', ) ); add_theme_support( 'custom-background', apply_filters( 'bakery_treats_custom_background_args', array( 'default-color' => '#fafafa', '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_action( 'after_setup_theme', 'bakery_treats_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 bakery_treats_content_width() { $GLOBALS['content_width'] = apply_filters( 'bakery_treats_content_width', 640 ); } add_action( 'after_setup_theme', 'bakery_treats_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function bakery_treats_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'bakery-treats' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'bakery-treats' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer 1', 'bakery-treats' ), 'id' => 'footer-1', 'description' => esc_html__( 'Add widgets here.', 'bakery-treats' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer 2', 'bakery-treats' ), 'id' => 'footer-2', 'description' => esc_html__( 'Add widgets here.', 'bakery-treats' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer 3', 'bakery-treats' ), 'id' => 'footer-3', 'description' => esc_html__( 'Add widgets here.', 'bakery-treats' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'bakery_treats_widgets_init' ); function bakery_treats_social_menu() { if (has_nav_menu('social-menu')) : wp_nav_menu(array( 'theme_location' => 'social-menu', 'container' => 'ul', 'menu_class' => 'social-menu menu', 'menu_id' => 'menu-social', )); endif; } // script function bakery_treats_scripts() { // Google Fonts $query_args = array( 'family' => 'Inter:wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900|Inria Serif:wght@0,300;0,400;0,700;1,300;1,400;1,700|Cookie', 'display' => 'swap', ); wp_enqueue_style('bakery-treats-google-fonts', add_query_arg($query_args, 'https://fonts.googleapis.com/css'), array(), null); // Font Awesome CSS wp_enqueue_style('font-awesome-5', get_template_directory_uri() . '/revolution/assets/vendors/font-awesome-5/css/all.min.css', array(), '5.15.3'); // Owl Carousel CSS wp_enqueue_style('owl.carousel.style', get_template_directory_uri() . '/revolution/assets/css/owl.carousel.css', array(), '2.3.4'); // Main stylesheet wp_enqueue_style('bakery-treats-style', get_stylesheet_uri(), array(), wp_get_theme()->get('Version')); // Add custom inline styles require get_parent_theme_file_path('/custom-style.php'); wp_add_inline_style('bakery-treats-style', $bakery_treats_custom_css); // RTL styles if needed wp_style_add_data('bakery-treats-style', 'rtl', 'replace'); // Navigation script wp_enqueue_script('bakery-treats-navigation', get_template_directory_uri() . '/js/navigation.js', array(), wp_get_theme()->get('Version'), true); // Owl Carousel script wp_enqueue_script('owl.carousel.jquery', get_template_directory_uri() . '/revolution/assets/js/owl.carousel.js', array('jquery'), '2.3.4', true); // Custom script wp_enqueue_script('bakery-treats-custom-js', get_template_directory_uri() . '/revolution/assets/js/custom.js', array('jquery'), wp_get_theme()->get('Version'), true); // Comments reply script if (is_singular() && comments_open() && get_option('thread_comments')) { wp_enqueue_script('comment-reply'); } } add_action('wp_enqueue_scripts', 'bakery_treats_scripts'); if (!function_exists('bakery_treats_related_post')) : /** * Display related posts from same category * */ function bakery_treats_related_post($post_id){ $categories = get_the_category($post_id); if ($categories) { $category_ids = array(); $category = get_category($category_ids); $categories = get_the_category($post_id); foreach ($categories as $category) { $category_ids[] = $category->term_id; } $count = $category->category_count; if ($count > 1) { ?>

$category_ids, 'post__not_in' => array($post_id), 'post_type' => 'post', 'posts_per_page' => 3, 'post_status' => 'publish', 'ignore_sticky_posts' => true ); $bakery_treats_featured_query = new WP_Query($bakery_treats_cat_post_args); ?>
have_posts()) : while ($bakery_treats_featured_query->have_posts()) : $bakery_treats_featured_query->the_post(); ?>
__get( 'Name' ); $current_screen = get_current_screen(); if( !$meta ){ if( is_network_admin() ){ return; } if( ! current_user_can( 'manage_options' ) ){ return; } if($current_screen->base != 'appearance_page_bakery_treats_guide' ) { ?>

remove_setting( 'display_header_text' ); $wp_customize->remove_control( 'display_header_text' ); } add_action( 'customize_register', 'bakery_treats_remove_customize_register', 11 ); /** * Custom logo */ function bakery_treats_custom_css() { ?> get_control( $setting->id ); if ( array_key_exists( $input, $control->choices ) ) { return $input; } else { return $setting->default; } } // Change number of products per row to 3 add_filter('loop_shop_columns', 'custom_loop_columns', 999); function custom_loop_columns() { return 3; // Change this number to adjust the number of products per row } define('BAKERY_TREATS_FREE_SUPPORT',__('https://www.revolutionwp.com/wp-themes/free-bakery-wordpress-theme/','bakery-treats')); define('BAKERY_TREATS_PRO_SUPPORT',__('https://www.revolutionwp.com/support/revolution-wp/','bakery-treats')); define('BAKERY_TREATS_REVIEW',__('https://wordpress.org/support/theme/bakery-treats/reviews/#new-post','bakery-treats')); define('BAKERY_TREATS_BUY_NOW',__('https://www.revolutionwp.com/wp-themes/bakery-wordpress-theme/','bakery-treats')); define('BAKERY_TREATS_LIVE_DEMO',__('https://www.revolutionwp.com/wpdemo/bakery-treats-pro/','bakery-treats')); define('BAKERY_TREATS_PRO_DOC',__('https://www.revolutionwp.com/wpdocs/bakery-treats-pro/','bakery-treats')); define('BAKERY_TREATS_LITE_DOC',__('https://www.revolutionwp.com/wpdocs/bakery-treats-free/','bakery-treats')); function get_changelog_from_readme() { $file_path = get_template_directory() . '/readme.txt'; // Adjust path if necessary if (file_exists($file_path)) { $content = file_get_contents($file_path); // Extract changelog section $changelog_start = strpos($content, "== Changelog =="); $changelog = substr($content, $changelog_start); // Split changelog into versions preg_match_all('/\*\s([\d\.]+)\s-\s(.+?)\n((?:\t-\s.+?\n)+)/', $changelog, $matches, PREG_SET_ORDER); return $matches; } return []; }