esc_html__( 'Primary', 'automotive-parts' ),
'social-menu' => esc_html__('Social Menu', 'automotive-parts'),
)
);
add_theme_support(
'html5',
array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
'style',
'script',
)
);
add_theme_support(
'custom-background',
apply_filters(
'automotive_parts_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', 'automotive_parts_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 $automotive_parts_content_width
*/
function automotive_parts_content_width() {
$GLOBALS['content_width'] = apply_filters( 'automotive_parts_content_width', 640 );
}
add_action( 'after_setup_theme', 'automotive_parts_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function automotive_parts_widgets_init() {
register_sidebar(
array(
'name' => esc_html__( 'Sidebar', 'automotive-parts' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here.', 'automotive-parts' ),
'before_widget' => '',
'before_title' => '
',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Footer 1', 'automotive-parts' ),
'id' => 'footer-1',
'description' => esc_html__( 'Add widgets here.', 'automotive-parts' ),
'before_widget' => '',
'before_title' => '',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Footer 2', 'automotive-parts' ),
'id' => 'footer-2',
'description' => esc_html__( 'Add widgets here.', 'automotive-parts' ),
'before_widget' => '',
'before_title' => '',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Footer 3', 'automotive-parts' ),
'id' => 'footer-3',
'description' => esc_html__( 'Add widgets here.', 'automotive-parts' ),
'before_widget' => '',
'before_title' => '',
)
);
}
add_action( 'widgets_init', 'automotive_parts_widgets_init' );
function automotive_parts_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 automotive_parts_scripts() {
// Google Fonts
$query_args = array(
'family' => rawurlencode('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'),
'display' => 'swap',
);
wp_enqueue_style('automotive-parts-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(), wp_get_theme()->get('Version'));
// Main stylesheet
wp_enqueue_style('automotive-parts-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('automotive-parts-style', $automotive_parts_custom_css);
// RTL styles if needed
if (file_exists(get_stylesheet_directory() . '/rtl.css')) {
wp_style_add_data('automotive-parts-style', 'rtl', 'replace');
}
// Navigation script
wp_enqueue_script('automotive-parts-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'), wp_get_theme()->get('Version'), true);
// Custom script
wp_enqueue_script('automotive-parts-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', 'automotive_parts_scripts');
if (!function_exists('automotive_parts_related_post')) :
/**
* Display related posts from same category
*
*/
function automotive_parts_related_post($post_id){
$automotive_parts_categories = get_the_category($post_id);
if ($automotive_parts_categories) {
$automotive_parts_category_ids = array();
$automotive_parts_category = get_category($automotive_parts_category_ids);
$automotive_parts_categories = get_the_category($post_id);
foreach ($automotive_parts_categories as $automotive_parts_category) {
$automotive_parts_category_ids[] = $automotive_parts_category->term_id;
}
$automotive_parts_count = $automotive_parts_category->category_count;
if ($automotive_parts_count > 1) { ?>
$automotive_parts_category_ids,
'post__not_in' => array($post_id),
'post_type' => 'post',
'posts_per_page' => get_theme_mod( 'automotive_parts_related_post_count', '3' ),
'post_status' => 'publish',
'orderby' => 'rand',
'ignore_sticky_posts' => true
);
$automotive_parts_featured_query = new WP_Query($automotive_parts_cat_post_args);
?>
have_posts()) :
while ($automotive_parts_featured_query->have_posts()) : $automotive_parts_featured_query->the_post();
?>
remove_setting( 'display_header_text' );
$wp_customize->remove_control( 'display_header_text' );
}
add_action( 'customize_register', 'automotive_parts_remove_customize_register', 11 );
/************************************************************************************/
/**
* WooCommerce custom filters
*/
add_filter('loop_shop_columns', 'automotive_parts_loop_columns');
if (!function_exists('automotive_parts_loop_columns')) {
function automotive_parts_loop_columns() {
$automotive_parts_columns = get_theme_mod( 'automotive_parts_per_columns', 3 );
return $automotive_parts_columns;
}
}
/************************************************************************************/
add_filter( 'loop_shop_per_page', 'automotive_parts_per_page', 20 );
function automotive_parts_per_page( $automotive_parts_cols ) {
$automotive_parts_cols = get_theme_mod( 'automotive_parts_product_per_page', 9 );
return $automotive_parts_cols;
}
/************************************************************************************/
add_filter( 'woocommerce_output_related_products_args', 'automotive_parts_products_args' );
function automotive_parts_products_args( $automotive_parts_args ) {
$automotive_parts_args['posts_per_page'] = get_theme_mod( 'custom_related_products_number', 6 );
$automotive_parts_args['columns'] = get_theme_mod( 'custom_related_products_number_per_row', 3 );
return $automotive_parts_args;
}
/************************************************************************************/
/**
* Custom logo
*/
function automotive_parts_custom_css() {
?>
get_control( $automotive_parts_setting->id );
if ( array_key_exists( $automotive_parts_input, $automotive_parts_control->choices ) ) {
return $automotive_parts_input;
} else {
return $automotive_parts_setting->default;
}
}
function automotive_parts_sanitize_phone_number( $phone ) {
return preg_replace( '/[^\d+]/', '', $phone );
}
//Excerpt
function automotive_parts_excerpt_function($automotive_parts_excerpt_count = 35) {
$automotive_parts_excerpt = get_the_excerpt();
$automotive_parts_text_excerpt = wp_strip_all_tags($automotive_parts_excerpt);
$automotive_parts_excerpt_limit = (int) get_theme_mod('automotive_parts_excerpt_limit', $automotive_parts_excerpt_count);
$automotive_parts_words = preg_split('/\s+/', $automotive_parts_text_excerpt);
$automotive_parts_trimmed_words = array_slice($automotive_parts_words, 0, $automotive_parts_excerpt_limit);
$automotive_parts_theme_excerpt = implode(' ', $automotive_parts_trimmed_words);
return $automotive_parts_theme_excerpt;
}
// Add admin notice
function automotive_parts_admin_notice() {
global $pagenow;
$automotive_parts_theme_args = wp_get_theme();
$automotive_parts_meta = get_option( 'automotive_parts_admin_notice' );
$name = $automotive_parts_theme_args->__get( 'Name' );
$automotive_parts_current_screen = get_current_screen();
if( !$automotive_parts_meta ){
if( is_network_admin() ){
return;
}
if( ! current_user_can( 'manage_options' ) ){
return;
}
if( $automotive_parts_current_screen->base !== 'appearance_page_automotive_parts_guide' &&
$automotive_parts_current_screen->base !== 'toplevel_page_automotiveparts-demoimport' ) { ?>
get( 'Name' );
/* translators: %s!: Theme Name. */
echo esc_html( sprintf( __( 'Welcome to the free theme: %s!', 'automotive-parts' ), $automotive_parts_theme_name ) );
?>