esc_html__( 'Main menu', 'bakery-cafe' ), )); add_theme_support( 'align-wide' ); add_theme_support( 'woocommerce' ); add_theme_support('title-tag'); add_theme_support('automatic-feed-links'); add_theme_support('post-thumbnails'); add_theme_support( "responsive-embeds" ); add_theme_support( 'wp-block-styles' ); add_theme_support( 'custom-background', array( 'default-color' => 'ffffff' )); add_theme_support( 'custom-logo', array( 'height' => 70, 'width' => 70, ) ); add_theme_support( 'custom-header', array( 'header-text' => false, 'width' => 1920, 'height' => 100, 'flex-width' => true, 'flex-height' => true, )); add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); add_theme_support( 'post-formats', array('image','video','gallery','audio',) ); add_editor_style( array( '/css/editor-style.css' ) ); } add_action( 'after_setup_theme', 'bakery_cafe_after_setup_theme', 999 ); } function bakery_cafe_template_setup() { require get_template_directory() .'/core/includes/customizer-notice/bakery-cafe-customizer-notify.php'; require get_template_directory() .'/core/includes/theme-breadcrumb.php'; require get_template_directory() .'/core/includes/main.php'; require get_template_directory() . '/core/includes/importer/config.php'; require get_template_directory() . '/core/includes/customizer.php'; load_template( trailingslashit( get_template_directory() ) . '/core/includes/class-upgrade-pro.php' ); } add_action('after_setup_theme', 'bakery_cafe_template_setup'); /**------------------------------------------------------------------------------------------ * Enqueue theme logo style. */ function bakery_cafe_logo_resizer() { $bakery_cafe_theme_logo_size_css = ''; $bakery_cafe_logo_resizer = get_theme_mod('bakery_cafe_logo_resizer'); $bakery_cafe_theme_logo_size_css = ' .custom-logo{ height: '.esc_attr($bakery_cafe_logo_resizer).'px !important; width: '.esc_attr($bakery_cafe_logo_resizer).'px !important; } '; wp_add_inline_style( 'bakery-cafe-style',$bakery_cafe_theme_logo_size_css ); } add_action( 'wp_enqueue_scripts', 'bakery_cafe_logo_resizer' ); /*-----------------------------------------------------------------------------------*/ /* Enqueue Global color style */ /*-----------------------------------------------------------------------------------*/ function bakery_cafe_global_color() { $bakery_cafe_theme_color_css = ''; $bakery_cafe_copyright_bg = get_theme_mod('bakery_cafe_copyright_bg'); $bakery_cafe_theme_color_css = ' .copyright { background: '.esc_attr($bakery_cafe_copyright_bg).'; } '; wp_add_inline_style( 'bakery-cafe-style',$bakery_cafe_theme_color_css ); wp_add_inline_style( 'bakery-cafe-woocommerce-css',$bakery_cafe_theme_color_css ); } add_action( 'wp_enqueue_scripts', 'bakery_cafe_global_color' ); /*-----------------------------------------------------------------------------------*/ /* Get post comments */ /*-----------------------------------------------------------------------------------*/ if (!function_exists('bakery_cafe_comment')) : /** * Template for comments and pingbacks. * * Used as a callback by wp_list_comments() for displaying the comments. */ function bakery_cafe_comment($comment, $bakery_cafe_args, $depth){ if ('pingback' == $comment->comment_type || 'trackback' == $comment->comment_type) : ?>
  • >
    ', ''); ?>
  • >
    %s', get_comment_author_link() ); ?>
    ', '' ); ?>
    comment_approved) : ?>

    'div-comment', 'depth' => $depth, 'max_depth' => $bakery_cafe_args['max_depth'], 'before' => '
    ', 'after' => '
    ' ) ) ); ?>
    esc_html__('Sidebar','bakery-cafe'), 'id' => 'bakery-cafe-sidebar', 'description' => esc_html__('This sidebar will be shown next to the content.', 'bakery-cafe'), 'before_widget' => '', 'before_title' => '

    ', 'after_title' => '

    ' )); register_sidebar(array( 'name' => esc_html__('Sidebar 2','bakery-cafe'), 'id' => 'bakery-cafe-sidebar-2', 'description' => esc_html__('This sidebar will be shown next to the content.', 'bakery-cafe'), 'before_widget' => '', 'before_title' => '

    ', 'after_title' => '

    ' )); register_sidebar(array( 'name' => esc_html__('Sidebar 3','bakery-cafe'), 'id' => 'bakery-cafe-sidebar-3', 'description' => esc_html__('This sidebar will be shown next to the content.', 'bakery-cafe'), 'before_widget' => '', 'before_title' => '

    ', 'after_title' => '

    ' )); register_sidebar(array( 'name' => esc_html__('Footer sidebar','bakery-cafe'), 'id' => 'bakery-cafe-footer-sidebar', 'description' => esc_html__('This sidebar will be shown next at the bottom of your content.', 'bakery-cafe'), 'before_widget' => '
    ', 'after_widget' => '
    ', 'before_title' => '

    ', 'after_title' => '

    ' )); } add_action( 'widgets_init', 'bakery_cafe_widgets_init' ); } function bakery_cafe_get_categories_select() { $bakery_cafe_teh_cats = get_categories(); $results; $bakery_cafe_count = count($bakery_cafe_teh_cats); for ($i=0; $i < $bakery_cafe_count; $i++) { if (isset($bakery_cafe_teh_cats[$i])) $results[$bakery_cafe_teh_cats[$i]->slug] = $bakery_cafe_teh_cats[$i]->name; else $bakery_cafe_count++; } return $results; } /** * Show cart contents / total Ajax */ add_filter( 'woocommerce_add_to_cart_fragments', 'bakery_cafe_woocommerce_header_add_to_cart_fragment' ); function bakery_cafe_woocommerce_header_add_to_cart_fragment( $fragments ) { global $woocommerce; ob_start(); ?>

    cart->get_cart_contents_count() ));?>

    get_setting( 'header_textcolor' ) ) { $wp_customize->remove_setting( 'header_textcolor' ); } if ( $wp_customize->get_control( 'header_textcolor' ) ) { $wp_customize->remove_control( 'header_textcolor' ); } } // edit link option if (!function_exists('bakery_cafe_edit_link')) : function bakery_cafe_edit_link($view = 'default') { global $post; edit_post_link( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ __('Edit %s', 'bakery-cafe'), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ), '', '' ); } endif; function get_page_id_by_title($pagename){ $args = array( 'post_type' => 'page', 'posts_per_page' => 1, 'post_status' => 'publish', 'title' => $pagename ); $query = new WP_Query( $args ); $page_id = '1'; if (isset($query->post->ID)) { $page_id = $query->post->ID; } return $page_id; } add_filter( 'woocommerce_prevent_automatic_wizard_redirect', '__return_true' );