esc_html__( 'Left Menu', 'butcher-meatshop' ), 'right-menu' => esc_html__( 'Right Menu', 'butcher-meatshop' ), 'responsive-menu' => esc_html__( 'Responsive Menu', 'butcher-meatshop' ), 'social-menu' => esc_html__( 'Social Menu', 'butcher-meatshop' ), ) ); add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', 'style', 'script', ) ); add_theme_support( 'custom-background', apply_filters( 'butcher_meatshop_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_theme_support( 'post-formats', array( 'image', 'video', 'gallery', 'audio', )); } add_action( 'after_setup_theme', 'butcher_meatshop_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 $butcher_meatshop_content_width */ function butcher_meatshop_content_width() { $GLOBALS['content_width'] = apply_filters( 'butcher_meatshop_content_width', 640 ); } add_action( 'after_setup_theme', 'butcher_meatshop_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function butcher_meatshop_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'butcher-meatshop' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'butcher-meatshop' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

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

', 'after_title' => '

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

', 'after_title' => '

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

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'butcher_meatshop_widgets_init' ); function butcher_meatshop_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; } /** * Enqueue scripts and styles. */ function butcher_meatshop_scripts() { // Google Fonts $query_args = array( 'family' => 'Poppins:ital,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|Vollkorn:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900', 'display' => 'swap', ); wp_enqueue_style('butcher-meatshop-google-fonts', add_query_arg($query_args, 'https://fonts.googleapis.com/css'), array(), null); // Font Awesome CSS wp_enqueue_style('font-awesome-6', get_template_directory_uri() . '/revolution/assets/vendors/font-awesome-6/css/all.min.css', array(), '6.7.2'); // 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('butcher-meatshop-style', get_stylesheet_uri(), array(), wp_get_theme()->get('Version')); // Check if custom styles exist before adding inline styles if (file_exists(get_parent_theme_file_path('/custom-style.php'))) { require get_parent_theme_file_path('/custom-style.php'); if (!empty($butcher_meatshop_custom_css)) { wp_add_inline_style('butcher-meatshop-style', $butcher_meatshop_custom_css); } } // RTL styles if needed wp_style_add_data('butcher-meatshop-style', 'rtl', 'replace'); // Navigation script wp_enqueue_script('butcher-meatshop-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('butcher-meatshop-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', 'butcher_meatshop_scripts'); if (!function_exists('butcher_meatshop_related_post')) : /** * Display related posts from same category * */ function butcher_meatshop_related_post($post_id){ $butcher_meatshop_categories = get_the_category($post_id); if ($butcher_meatshop_categories) { $butcher_meatshop_category_ids = array(); $butcher_meatshop_category = get_category($butcher_meatshop_category_ids); $butcher_meatshop_categories = get_the_category($post_id); foreach ($butcher_meatshop_categories as $butcher_meatshop_category) { $butcher_meatshop_category_ids[] = $butcher_meatshop_category->term_id; } $butcher_meatshop_count = $butcher_meatshop_category->category_count; if ($butcher_meatshop_count > 1) { ?>

$butcher_meatshop_category_ids, 'post__not_in' => array($post_id), 'post_type' => 'post', 'posts_per_page' => get_theme_mod( 'butcher_meatshop_related_post_count', '3' ), 'post_status' => 'publish', 'orderby' => 'rand', 'ignore_sticky_posts' => true ); $butcher_meatshop_featured_query = new WP_Query($butcher_meatshop_cat_post_args); ?>
have_posts()) : while ($butcher_meatshop_featured_query->have_posts()) : $butcher_meatshop_featured_query->the_post(); ?>
'; } ?>

remove_setting( 'display_header_text' ); $wp_customize->remove_control( 'display_header_text' ); } add_action( 'customize_register', 'butcher_meatshop_remove_customize_register', 11 ); /************************************************************************************/ // ////////////////////////////////////////////// /** * WooCommerce custom filters */ add_filter('loop_shop_columns', 'butcher_meatshop_loop_columns'); if (!function_exists('butcher_meatshop_loop_columns')) { function butcher_meatshop_loop_columns() { $butcher_meatshop_columns = get_theme_mod( 'butcher_meatshop_per_columns', 3 ); return $butcher_meatshop_columns; } } /************************************************************************************/ add_filter( 'loop_shop_per_page', 'butcher_meatshop_per_page', 20 ); function butcher_meatshop_per_page( $butcher_meatshop_cols ) { $butcher_meatshop_cols = get_theme_mod( 'butcher_meatshop_product_per_page', 9 ); return $butcher_meatshop_cols; } /************************************************************************************/ add_filter( 'woocommerce_output_related_products_args', 'butcher_meatshop_products_args' ); function butcher_meatshop_products_args( $butcher_meatshop_args ) { $butcher_meatshop_args['posts_per_page'] = get_theme_mod( 'custom_related_products_number', 6 ); $butcher_meatshop_args['columns'] = get_theme_mod( 'custom_related_products_number_per_row', 3 ); return $butcher_meatshop_args; } /************************************************************************************/ /** * Custom logo */ function butcher_meatshop_custom_css() { $butcher_meatshop_logo_width = absint(get_theme_mod('butcher_meatshop_logo_width', 150)); $butcher_meatshop_custom_css = " :root { --butcher-meatshop-logo-width: {$butcher_meatshop_logo_width}px; } .site-branding img { max-width: {$butcher_meatshop_logo_width}px; } "; wp_add_inline_style('butcher-meatshop-style', $butcher_meatshop_custom_css); } add_action('wp_enqueue_scripts', 'butcher_meatshop_custom_css'); function butcher_meatshop_sanitize_choices( $butcher_meatshop_input, $butcher_meatshop_setting ) { global $wp_customize; $butcher_meatshop_control = $wp_customize->get_control( $butcher_meatshop_setting->id ); if ( array_key_exists( $butcher_meatshop_input, $butcher_meatshop_control->choices ) ) { return $butcher_meatshop_input; } else { return $butcher_meatshop_setting->default; } } // Add admin notice function butcher_meatshop_admin_notice() { global $pagenow; $butcher_meatshop_theme_args = wp_get_theme(); $butcher_meatshop_meta = get_option( 'butcher_meatshop_admin_notice' ); $name = $butcher_meatshop_theme_args->__get( 'Name' ); $butcher_meatshop_current_screen = get_current_screen(); if( !$butcher_meatshop_meta ){ if( is_network_admin() ){ return; } if( ! current_user_can( 'manage_options' ) ){ return; } if($butcher_meatshop_current_screen->base != 'appearance_page_butcher_meatshop_guide' ) { ?>