default ); } 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 ); } 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; } } // post format functions function air_conditioning_services_get_attachment(){ $output =''; if(has_post_thumbnail()): $output =wp_get_attachment_url(get_post_thumbnail_id(get_the_ID())); else: $attachments = get_posts(array( 'post_type' => 'attachment', 'posts_per_page' => 1, 'post_parent' => get_the_ID() )); if ($attachments): foreach ($attachments as $attachment): $output = wp_get_attachment_url($attachment -> ID); endforeach; endif; wp_reset_postdata(); endif; return $output; } //media post format function air_conditioning_services_get_media($type = array()){ $content = apply_filters( 'the_content', get_the_content() ); $output = false; // Only get audio from the content if a playlist isn't present. if ( false === strpos( $content, 'wp-playlist-script' ) ) { $output = get_media_embedded_in_content( $content, $type ); return $output; } } 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' ); } if ( ! function_exists( 'air_conditioning_services_sanitize_integer' ) ) { function air_conditioning_services_sanitize_integer( $input ) { return (int) $input; } } function air_conditioning_services_excerpt_more( $link ) { if ( is_admin() ) { return $link; } $link = sprintf( '', esc_url( get_permalink( get_the_ID() ) ), /* translators: %s: Name of current post */ sprintf( __( 'Read More "%s"', 'air-conditioning-services' ), get_the_title( get_the_ID() ) ) ); return ' … ' . $link; } add_filter( 'excerpt_more', 'air_conditioning_services_excerpt_more' ); function air_conditioning_services_string_limit_words($string, $word_limit) { $words = explode(' ', $string, ($word_limit + 1)); if(count($words) > $word_limit) array_pop($words); return implode(' ', $words); } 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, ) ); // 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' ); 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' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_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' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_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' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_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' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer 2', 'air-conditioning-services' ), 'id' => 'footer-2', 'description' => __( 'Add widgets here to appear in your footer.', 'air-conditioning-services' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer 3', 'air-conditioning-services' ), 'id' => 'footer-3', 'description' => __( 'Add widgets here to appear in your footer.', 'air-conditioning-services' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer 4', 'air-conditioning-services' ), 'id' => 'footer-4', 'description' => __( 'Add widgets here to appear in your footer.', 'air-conditioning-services' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'air_conditioning_services_widgets_init' ); //Enqueue scripts and styles. function air_conditioning_services_scripts() { require_once get_theme_file_path( 'inc/wptt-webfont-loader.php' ); wp_enqueue_style( 'jost', wptt_get_webfont_url( 'https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200;0,300;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap' ), array(), '1.0' ); //Bootstarp wp_enqueue_style( 'bootstrap-style', get_template_directory_uri().'/assets/css/bootstrap.css' ); // Theme stylesheet. wp_enqueue_style( 'air-conditioning-services-style', get_stylesheet_uri() ); // Theme Customize CSS. require get_parent_theme_file_path( 'inc/extra_customization.php' ); wp_add_inline_style( 'air-conditioning-services-style',$air_conditioning_services_custom_style ); //font-awesome wp_enqueue_style( 'font-awesome-style', get_template_directory_uri().'/assets/css/fontawesome-all.css' ); //Owl Carousel CSS wp_enqueue_style( 'owl.carousel-style', get_template_directory_uri().'/assets/css/owl.carousel.css' ); // Block Style wp_enqueue_style( 'air-conditioning-services-block-style',get_template_directory_uri().'/assets/css/blocks.css' ); //Custom JS wp_enqueue_script( 'air-conditioning-services-custom.js', get_theme_file_uri( '/assets/js/theme-script.js' ), array( 'jquery' ), true ); //Nav Focus JS wp_enqueue_script( 'air-conditioning-services-navigation-focus', get_theme_file_uri( '/assets/js/navigation-focus.js' ), array( 'jquery' ), true ); //Bootstarp JS wp_enqueue_script( 'bootstrap-js', get_theme_file_uri( '/assets/js/bootstrap.js' ), array( 'jquery' ),true ); //Owl Carousel JS wp_enqueue_script( 'owl.carousel-js', get_theme_file_uri( '/assets/js/owl.carousel.js' ), array( 'jquery' ),true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } wp_enqueue_style( 'air-conditioning-services-style', get_stylesheet_uri() ); wp_style_add_data( 'air-conditioning-services-style', 'rtl', 'replace' ); } add_action( 'wp_enqueue_scripts', 'air_conditioning_services_scripts' ); 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' ); // Enqueue editor styles for Gutenberg function air_conditioning_services_block_editor_styles() { // Block styles. wp_enqueue_style( 'air-conditioning-services-block-editor-style', trailingslashit( esc_url ( get_template_directory_uri() ) ) . '/assets/css/editor-blocks.css' ); } add_action( 'enqueue_block_editor_assets', 'air_conditioning_services_block_editor_styles' ); function air_conditioning_services_front_page_template( $template ) { return is_home() ? '' : $template; } add_filter( 'frontpage_template', 'air_conditioning_services_front_page_template' ); require get_parent_theme_file_path( '/inc/custom-header.php' ); require get_parent_theme_file_path( '/inc/template-tags.php' ); require get_parent_theme_file_path( '/inc/template-functions.php' ); require get_parent_theme_file_path( '/inc/customizer.php' ); require get_parent_theme_file_path( '/inc/typofont.php' ); # Load scripts and styles.(fontawesome) add_action( 'customize_controls_enqueue_scripts', 'air_conditioning_services_customize_controls_register_scripts' ); function air_conditioning_services_customize_controls_register_scripts() { wp_enqueue_style( 'air-conditioning-services-ctypo-customize-controls-style', trailingslashit( esc_url(get_template_directory_uri()) ) . '/assets/css/customize-controls.css' ); }