esc_html__( 'Main menu', 'auto-parts-supplier' ), )); add_theme_support( 'responsive-embeds' ); add_theme_support( 'woocommerce' ); add_theme_support( 'align-wide' ); add_theme_support('title-tag'); add_theme_support('automatic-feed-links'); add_theme_support( 'wp-block-styles' ); add_theme_support('post-thumbnails'); add_theme_support( 'custom-background', array( 'default-color' => 'f3f3f3' )); add_theme_support( 'custom-logo', array( 'height' => 70, 'width' => 70, 'flex-height' => true, 'flex-width' => true, ) ); add_theme_support( 'custom-header', array( 'header-text' => false, 'width' => 1920, 'height' => 100, 'flex-height' => true, 'flex-width' => 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', 'auto_parts_supplier_after_setup_theme', 999 ); } function auto_parts_supplier_template_setup() { require get_template_directory() .'/core/includes/theme-breadcrumb.php'; require get_template_directory() . '/core/includes/importer/config.php'; require get_template_directory() . '/core/includes/customizer.php'; require get_template_directory() .'/core/includes/main.php'; load_template( trailingslashit( get_template_directory() ) . '/core/includes/class-upgrade-pro.php' ); } add_action('after_setup_theme', 'auto_parts_supplier_template_setup'); /*-----------------------------------------------------------------------------------*/ /* Enqueue theme logo style */ /*-----------------------------------------------------------------------------------*/ function auto_parts_supplier_logo_resizer() { $auto_parts_supplier_theme_logo_size_css = ''; $auto_parts_supplier_logo_resizer = get_theme_mod('auto_parts_supplier_logo_resizer'); $auto_parts_supplier_theme_logo_size_css = ' .custom-logo{ height: '.esc_attr($auto_parts_supplier_logo_resizer).'px !important; width: '.esc_attr($auto_parts_supplier_logo_resizer).'px !important; } '; wp_add_inline_style( 'auto-parts-supplier-style',$auto_parts_supplier_theme_logo_size_css ); } add_action( 'wp_enqueue_scripts', 'auto_parts_supplier_logo_resizer' ); /*-----------------------------------------------------------------------------------*/ /* Get post comments */ /*-----------------------------------------------------------------------------------*/ if (!function_exists('auto_parts_supplier_comment')) : /** * Template for comments and pingbacks. * * Used as a callback by wp_list_comments() for displaying the comments. */ function auto_parts_supplier_comment($comment, $auto_parts_supplier_args, $depth){ if ('pingback' == $comment->comment_type || 'trackback' == $comment->comment_type) : ?>
  • >
    ', ''); ?>
  • >
    %s', get_comment_author_link() ); ?>
    ', '' ); ?>
    comment_approved) : ?>

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

    ', 'after_title' => '

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

    ', 'after_title' => '

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

    ', 'after_title' => '

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

    ', 'after_title' => '

    ' )); } add_action( 'widgets_init', 'auto_parts_supplier_widgets_init' ); } function auto_parts_supplier_get_categories_select() { $auto_parts_supplier_teh_cats = get_categories(); $results; $auto_parts_supplier_count = count($auto_parts_supplier_teh_cats); for ($i=0; $i < $auto_parts_supplier_count; $i++) { if (isset($auto_parts_supplier_teh_cats[$i])) $results[$auto_parts_supplier_teh_cats[$i]->slug] = $auto_parts_supplier_teh_cats[$i]->name; else $auto_parts_supplier_count++; } return $results; } function auto_parts_supplier_sanitize_select( $input, $setting ) { // Ensure input is a slug $input = sanitize_key( $input ); // Get list of choices from the control // associated with the setting $choices = $setting->manager->get_control( $setting->id )->choices; // If the input is a valid key, return it; // otherwise, return the default return ( array_key_exists( $input, $choices ) ? $input : $setting->default ); } // Change number or products per row to 3 add_filter('loop_shop_columns', 'auto_parts_supplier_loop_columns'); if (!function_exists('auto_parts_supplier_loop_columns')) { function auto_parts_supplier_loop_columns() { $auto_parts_supplier_columns = get_theme_mod( 'auto_parts_supplier_per_columns', 3 ); return $auto_parts_supplier_columns; } } //Change number of products that are displayed per page (shop page) add_filter( 'loop_shop_per_page', 'auto_parts_supplier_per_page', 20 ); function auto_parts_supplier_per_page( $auto_parts_supplier_cols ) { $auto_parts_supplier_cols = get_theme_mod( 'auto_parts_supplier_product_per_page', 9 ); return $auto_parts_supplier_cols; } // Add filter to modify the number of related products add_filter( 'woocommerce_output_related_products_args', 'auto_parts_supplier_products_args' ); function auto_parts_supplier_products_args( $args ) { $args['posts_per_page'] = get_theme_mod( 'custom_related_products_number', 6 ); $args['columns'] = get_theme_mod( 'custom_related_products_number_per_row', 3 ); return $args; } /*-----------------------------------------------------------------------------------*/ /* Enqueue Global color style */ /*-----------------------------------------------------------------------------------*/ function auto_parts_supplier_global_color() { $auto_parts_supplier_theme_color_css = ''; $auto_parts_supplier_copyright_bg = get_theme_mod('auto_parts_supplier_copyright_bg'); $auto_parts_supplier_theme_color_css = ' .copyright { background: '.esc_attr($auto_parts_supplier_copyright_bg).'; } '; wp_add_inline_style( 'auto-parts-supplier-style',$auto_parts_supplier_theme_color_css ); wp_add_inline_style( 'auto-parts-supplier-woocommerce-css',$auto_parts_supplier_theme_color_css ); } add_action( 'wp_enqueue_scripts', 'auto_parts_supplier_global_color' ); //add animation class if ( class_exists( 'WooCommerce' ) ) { add_filter('post_class', function($auto_parts_supplier, $class, $product_id) { if( is_shop() || is_product_category() ){ $auto_parts_supplier = array_merge(['wow','zoomIn'], $auto_parts_supplier); } return $auto_parts_supplier; },10,3); } add_action( 'customize_register', 'auto_parts_supplier_remove_setting', 20 ); function auto_parts_supplier_remove_setting( $wp_customize ) { // Check if the setting or control exists before removing if ( $wp_customize->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('auto_parts_supplier_edit_link')) : function auto_parts_supplier_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', 'auto-parts-supplier'), 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_enable_setup_wizard', '__return_false' );