get_theme_mod( 'business_consulting_lite_related_shop_perpage', 3 ), 'columns' => get_theme_mod( 'business_consulting_lite_related_item_columns', 3), ); $args = wp_parse_args( $defaults, $args ); return $args; } add_filter( 'woocommerce_output_related_products_args', 'business_consulting_lite_related_products_args' ); //woocommerce-end// // get function // function business_consulting_lite_notice(){ global $pagenow; if ( is_admin() && ('themes.php' == $pagenow) && isset( $_GET['activated'] ) ) { wp_safe_redirect( admin_url("themes.php?page=business-consulting-lite-guide-page") ); } } add_action('after_setup_theme', 'business_consulting_lite_notice'); function business_consulting_lite_add_new_page() { $edit_page = admin_url().'post-new.php?post_type=page'; echo json_encode(['page_id'=>'','edit_page_url'=> $edit_page ]); exit; } add_action( 'wp_ajax_business_consulting_lite_add_new_page','business_consulting_lite_add_new_page' ); // get function end// // tag count function display_post_tag_count() { $tags = get_the_tags(); $tag_count = ($tags) ? count($tags) : 0; $tag_text = ($tag_count === 1) ? 'tag' : 'tags'; // Check for pluralization echo $tag_count . ' ' . $tag_text; } // front page template function business_consulting_lite_front_page_template( $template ) { return is_home() ? '' : $template; } add_filter( 'frontpage_template', 'business_consulting_lite_front_page_template' ); //media post format function business_consulting_lite_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; } } // excerpt function function business_consulting_lite_custom_excerpt() { global $post; $content = get_the_content(); // Use get_the_content to retrieve the full post content $excerpt_length = get_theme_mod('business_consulting_lite_post_excerpt', 30); // Get the excerpt length from the Customizer setting // Use wp_trim_words to limit the content to the desired number of words $excerpt = wp_trim_words($content, $excerpt_length); $read_more_link = sprintf( '
', esc_url(get_permalink(get_the_ID())), /* translators: %s: Name of current post */ sprintf(__('Read More "%s"', 'business-consulting-lite'), get_the_title(get_the_ID())) ); echo $excerpt . $read_more_link; } // typography function business_consulting_lite_fonts_scripts() { $business_consulting_lite_headings_font = esc_html(get_theme_mod('business_consulting_lite_headings_text')); $business_consulting_lite_body_font = esc_html(get_theme_mod('business_consulting_lite_body_text')); if( $business_consulting_lite_headings_font ) { wp_enqueue_style( 'business-consulting-lite-headings-fonts', '//fonts.googleapis.com/css?family='. $business_consulting_lite_headings_font ); } else { wp_enqueue_style( 'business-consulting-lite-source-sans', '//fonts.googleapis.com/css?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900'); } if( $business_consulting_lite_body_font ) { wp_enqueue_style( 'business-consulting-lite-body-fonts', '//fonts.googleapis.com/css?family='. $business_consulting_lite_body_font ); } else { wp_enqueue_style( 'business-consulting-lite-source-body', '//fonts.googleapis.com/css?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900'); } } add_action( 'wp_enqueue_scripts', 'business_consulting_lite_fonts_scripts' ); // custom sanitizations // dropdown function business_consulting_lite_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( 'business_consulting_lite_sanitize_integer' ) ) { function business_consulting_lite_sanitize_integer( $input ) { return (int) $input; } } // range contol function business_consulting_lite_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 business_consulting_lite_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 business_consulting_lite_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 business_consulting_lite_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 business_consulting_lite_sanitize_phone_number( $phone ) { return preg_replace( '/[^\d+]/', '', $phone ); } // customizer-dropdowns function business_consulting_lite_slider_dropdown(){ if(get_option('business_consulting_lite_hide_show') == true ) { return true; } return false; } function business_consulting_lite_skill_dropdown(){ if(get_option('business_consulting_lite_skill_enable') == true ) { return true; } return false; } // theme setup function business_consulting_lite_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-header' ); add_theme_support('custom-background',array( 'default-color' => 'ffffff', )); add_image_size( 'business-consulting-lite-featured-image', 2000, 1200, true ); add_image_size( 'business-consulting-lite-thumbnail-avatar', 100, 100, true ); $GLOBALS['content_width'] = 525; register_nav_menus( array( 'primary' => __( 'Primary Menu', 'business-consulting-lite' ), ) ); add_theme_support( 'html5', array( 'comment-form', 'comment-list', 'gallery', 'caption', ) ); /* * Enable support for Post Formats. * * See: https://codex.wordpress.org/Post_Formats */ add_theme_support( 'post-formats', array('image','video','gallery','audio','quote',) ); // 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' ); /* * 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', business_consulting_lite_fonts_url() ) ); } add_action( 'after_setup_theme', 'business_consulting_lite_setup' ); // widgets function business_consulting_lite_widgets_init() { register_sidebar( array( 'name' => __( 'Sidebar', 'business-consulting-lite' ), 'id' => 'sidebar-1', 'description' => __( 'Add widgets here to appear in your sidebar on blog posts and archive pages.', 'business-consulting-lite' ), 'before_widget' => '', 'before_title' => '', ) ); register_sidebar( array( 'name' => __( 'Page Sidebar', 'business-consulting-lite' ), 'id' => 'sidebar-2', 'description' => __( 'Add widgets here to appear in your pages and posts', 'business-consulting-lite' ), 'before_widget' => '', 'before_title' => '', ) ); register_sidebar( array( 'name' => __( 'Sidebar 3', 'business-consulting-lite' ), 'id' => 'sidebar-3', 'description' => __( 'Add widgets here to appear in your sidebar on blog posts and archive pages.', 'business-consulting-lite' ), 'before_widget' => '', 'before_title' => '', ) ); register_sidebar( array( 'name' => __( 'Footer 1', 'business-consulting-lite' ), 'id' => 'footer-1', 'description' => __( 'Add widgets here to appear in your footer.', 'business-consulting-lite' ), 'before_widget' => '', 'before_title' => '