get_theme_mod( 'air_conditioning_services_related_shop_perpage', 3 ), 'columns' => get_theme_mod( 'air_conditioning_services_related_item_columns', 3), ); $args = wp_parse_args( $defaults, $args ); return $args; } add_filter( 'woocommerce_output_related_products_args', 'air_conditioning_services_related_products_args' ); function air_conditioning_services_related_products_heading($air_conditioning_services_translated_text, $text, $domain) { $air_conditioning_services_heading = get_theme_mod('woocommerce_related_products_heading', 'Related products'); if ($text === 'Related products' && $domain === 'woocommerce') { $air_conditioning_services_translated_text = $air_conditioning_services_heading; } return $air_conditioning_services_translated_text; } add_filter('gettext', 'air_conditioning_services_related_products_heading', 20, 3); // breadcrumb seperator function air_conditioning_services_woocommerce_breadcrumb_separator($air_conditioning_services_defaults) { $air_conditioning_services_separator = get_theme_mod('woocommerce_breadcrumb_separator', ' / '); // Update the separator $air_conditioning_services_defaults['delimiter'] = $air_conditioning_services_separator; return $air_conditioning_services_defaults; } add_filter('woocommerce_breadcrumb_defaults', 'air_conditioning_services_woocommerce_breadcrumb_separator'); //add animation class add_filter('post_class', function($air_conditioning_services_classes, $class, $product_id) { if( is_shop() || is_product_category() ){ $air_conditioning_services_classes = array_merge(['wow','swing'], $air_conditioning_services_classes); } return $air_conditioning_services_classes; },10,3); //woocommerce-end// // Get start function function air_conditioning_services_custom_admin_notice() { // Check if the notice is dismissed if (!get_user_meta(get_current_user_id(), 'dismissed_admin_notice', true)) { // Check if not on the theme documentation page $air_conditioning_services_current_screen = get_current_screen(); if ($air_conditioning_services_current_screen && $air_conditioning_services_current_screen->id !== 'appearance_page_air-conditioning-services-guide-page') { $air_conditioning_services_theme = wp_get_theme(); ?>
esc_url(admin_url('admin-ajax.php')) )); } add_action('admin_enqueue_scripts', 'air_conditioning_services_enqueue_admin_script'); // Reset the dismissed notice status when the theme is switched function air_conditioning_services_after_switch_theme() { delete_user_meta(get_current_user_id(), 'dismissed_admin_notice'); } add_action('after_switch_theme', 'air_conditioning_services_after_switch_theme'); //get-start-function-end// // tag count function air_conditioning_services_display_post_tag_count() { $air_conditioning_services_tags = get_the_tags(); $air_conditioning_services_tag_count = ($air_conditioning_services_tags) ? count($air_conditioning_services_tags) : 0; $air_conditioning_services_tag_text = ($air_conditioning_services_tag_count === 1) ? 'tag' : 'tags'; echo $air_conditioning_services_tag_count . ' ' . $air_conditioning_services_tag_text; } //media post format function air_conditioning_services_get_media($air_conditioning_services_type = array()){ $air_conditioning_services_content = apply_filters( 'the_content', get_the_content() ); $output = false; // Only get media from the content if a playlist isn't present. if ( false === strpos( $air_conditioning_services_content, 'wp-playlist-script' ) ) { $output = get_media_embedded_in_content( $air_conditioning_services_content, $air_conditioning_services_type ); return $output; } } //front page function air_conditioning_services_front_page_template( $template ) { return is_home() ? '' : $template; } add_filter( 'frontpage_template', 'air_conditioning_services_front_page_template' ); // excerpt function function air_conditioning_services_custom_excerpt() { $air_conditioning_services_excerpt = get_the_excerpt(); $air_conditioning_services_plain_text_excerpt = wp_strip_all_tags($air_conditioning_services_excerpt); // Get dynamic word limit from theme mod $air_conditioning_services_word_limit = esc_attr(get_theme_mod('air_conditioning_services_post_excerpt', '30')); // Limit the number of words $air_conditioning_services_limited_excerpt = implode(' ', array_slice(explode(' ', $air_conditioning_services_plain_text_excerpt), 0, $air_conditioning_services_word_limit)); echo esc_html($air_conditioning_services_limited_excerpt); } // typography function air_conditioning_services_fonts_scripts() { $headings_font = esc_html(get_theme_mod('air_conditioning_services_headings_text')); $body_font = esc_html(get_theme_mod('air_conditioning_services_body_text')); if( $headings_font ) { wp_enqueue_style( 'air-conditioning-services-headings-fonts', '//fonts.googleapis.com/css?family='. $headings_font ); } else { wp_enqueue_style( 'air-conditioning-services-source-sans', '//fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic'); } if( $body_font ) { wp_enqueue_style( 'air-conditioning-services-body-fonts', '//fonts.googleapis.com/css?family='. $body_font ); } else { wp_enqueue_style( 'air-conditioning-services-source-body', '//fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,400italic,700,600'); } } add_action( 'wp_enqueue_scripts', 'air_conditioning_services_fonts_scripts' ); // Footer Text function air_conditioning_services_copyright_link() { $air_conditioning_services_footer_text = get_theme_mod('air_conditioning_services_footer_text', esc_html__('Air Conditioning Services WordPress Theme', 'air-conditioning-services')); $air_conditioning_services_credit_link = esc_url('https://www.ovationthemes.com/wordpress/free-ac-repair-wordpress-theme/'); echo '' . esc_html($air_conditioning_services_footer_text) . ''; } // custom sanitizations // dropdown function air_conditioning_services_sanitize_dropdown_pages( $page_id, $setting ) { $page_id = absint( $page_id ); return ( 'publish' == get_post_status( $page_id ) ? $page_id : $setting->default ); } // slider custom control if ( ! function_exists( 'air_conditioning_services_sanitize_integer' ) ) { function air_conditioning_services_sanitize_integer( $input ) { return (int) $input; } } // range contol function air_conditioning_services_sanitize_number_absint( $number, $setting ) { // Ensure input is an absolute integer. $number = absint( $number ); // Get the input attributes associated with the setting. $atts = $setting->manager->get_control( $setting->id )->input_attrs; // Get minimum number in the range. $min = ( isset( $atts['min'] ) ? $atts['min'] : $number ); // Get maximum number in the range. $max = ( isset( $atts['max'] ) ? $atts['max'] : $number ); // Get step. $step = ( isset( $atts['step'] ) ? $atts['step'] : 1 ); // If the number is within the valid range, return it; otherwise, return the default return ( $min <= $number && $number <= $max && is_int( $number / $step ) ? $number : $setting->default ); } // select post page function air_conditioning_services_sanitize_select( $input, $setting ){ $input = sanitize_key($input); $choices = $setting->manager->get_control( $setting->id )->choices; return ( array_key_exists( $input, $choices ) ? $input : $setting->default ); } // toggle switch function air_conditioning_services_callback_sanitize_switch( $value ) { // Switch values must be equal to 1 of off. Off is indicator and should not be translated. return ( ( isset( $value ) && $value == 1 ) ? 1 : 'off' ); } //choices control function air_conditioning_services_sanitize_choices( $input, $setting ) { global $wp_customize; $control = $wp_customize->get_control( $setting->id ); if ( array_key_exists( $input, $control->choices ) ) { return $input; } else { return $setting->default; } } // phone number function air_conditioning_services_sanitize_phone_number( $phone ) { return preg_replace( '/[^\d+]/', '', $phone ); } // Sanitize Sortable control. function air_conditioning_services_sanitize_sortable( $val, $setting ) { if ( is_string( $val ) || is_numeric( $val ) ) { return array( esc_attr( $val ), ); } $sanitized_value = array(); foreach ( $val as $item ) { if ( isset( $setting->manager->get_control( $setting->id )->choices[ $item ] ) ) { $sanitized_value[] = esc_attr( $item ); } } return $sanitized_value; } // customizer-dropdowns function air_conditioning_services_slider_dropdown(){ if(get_option('air_conditioning_services_slider_arrows') == true ) { return true; } return false; } function air_conditioning_services_about_dropdown(){ if(get_option('air_conditioning_services_about_enable') == true ) { return true; } return false; } // theme setup function air_conditioning_services_setup() { add_theme_support( 'woocommerce' ); add_theme_support( "align-wide" ); add_theme_support( "wp-block-styles" ); add_theme_support( 'automatic-feed-links' ); add_theme_support( 'post-thumbnails' ); add_theme_support( "responsive-embeds" ); add_theme_support( 'title-tag' ); add_theme_support('custom-background',array( 'default-color' => 'ffffff', )); add_image_size( 'air-conditioning-services-featured-image', 2000, 1200, true ); add_image_size( 'air-conditioning-services-thumbnail-avatar', 100, 100, true ); $GLOBALS['content_width'] = 525; register_nav_menus( array( 'primary' => __( 'Primary Menu', 'air-conditioning-services' ), ) ); add_theme_support( 'html5', array( 'comment-form', 'comment-list', 'gallery', 'caption', ) ); // Add theme support for Custom Logo. add_theme_support( 'custom-logo', array( 'width' => 250, 'height' => 250, 'flex-width' => true, 'flex-height' => true, ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); /* * Enable support for Post Formats. * * See: https://codex.wordpress.org/Post_Formats */ add_theme_support( 'post-formats', array('image','video','gallery','audio','quote',) ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, and column width. */ add_editor_style( array( 'assets/css/editor-style.css' ) ); } add_action( 'after_setup_theme', 'air_conditioning_services_setup' ); //widgets function air_conditioning_services_widgets_init() { register_sidebar( array( 'name' => __( 'Sidebar', 'air-conditioning-services' ), 'id' => 'sidebar-1', 'description' => __( 'Add widgets here to appear in your sidebar on blog posts and archive pages.', 'air-conditioning-services' ), 'before_widget' => '', 'before_title' => '', ) ); register_sidebar( array( 'name' => __( 'Page Sidebar', 'air-conditioning-services' ), 'id' => 'sidebar-2', 'description' => __( 'Add widgets here to appear in your pages and posts', 'air-conditioning-services' ), 'before_widget' => '', 'before_title' => '', ) ); register_sidebar( array( 'name' => __( 'Sidebar 3', 'air-conditioning-services' ), 'id' => 'sidebar-3', 'description' => __( 'Add widgets here to appear in your sidebar on blog posts and archive pages.', 'air-conditioning-services' ), 'before_widget' => '', 'before_title' => '', ) ); register_sidebar( array( 'name' => __( 'Footer 1', 'air-conditioning-services' ), 'id' => 'footer-1', 'description' => __( 'Add widgets here to appear in your footer.', 'air-conditioning-services' ), 'before_widget' => '', 'before_title' => '