tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support('title-tag'); /* * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support('post-thumbnails'); set_post_thumbnail_size(300); add_image_size('business-chat-grid', 350, 230, true); add_image_size('business-chat-slider', 850); add_image_size('business-chat-small', 300, 180, true); // This theme uses wp_nav_menu() in one location. register_nav_menus(array( 'menu-1' => esc_html__('Primary', 'business-chat'), )); add_theme_support('wc-product-gallery-zoom'); add_theme_support('wc-product-gallery-lightbox'); add_theme_support('wc-product-gallery-slider'); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support('html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', )); // Set up the WordPress core custom background feature. add_theme_support('custom-background', apply_filters('business_chat_custom_background_args', array( 'default-color' => '#ffffff', ))); // Add theme support for selective refresh for widgets. add_theme_support('customize-selective-refresh-widgets'); /** * Add support for core custom logo. * * @link https://codex.wordpress.org/Theme_Logo */ add_theme_support('custom-logo', array( 'flex-width' => true, 'flex-height' => true, )); } endif; add_action('after_setup_theme', 'business_chat_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 $content_width */ function business_chat_content_width() { $GLOBALS['content_width'] = apply_filters('business_chat_content_width', 640); } add_action('after_setup_theme', 'business_chat_content_width', 0); function business_chat_woocommerce_support() { add_theme_support('woocommerce'); } add_action('after_setup_theme', 'business_chat_woocommerce_support'); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function business_chat_widgets_init() { register_sidebar(array( 'name' => esc_html__('Sidebar', 'business-chat'), 'id' => 'sidebar-1', 'description' => esc_html__('Add widgets here.', 'business-chat'), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '', )); register_sidebar(array( 'name' => esc_html__('WooCommerce Sidebar', 'business-chat'), 'id' => 'sidebar-wc', 'description' => esc_html__('Add widgets here.', 'business-chat'), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '', )); register_sidebar(array( 'name' => esc_html__('Footer Widget', 'business-chat'), 'id' => 'footerwidget-1', 'description' => esc_html__('Add widgets here.', 'business-chat'), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'name' => esc_html__('Header Widget', 'business-chat'), 'id' => 'headerwidget-1', 'description' => esc_html__('Add widgets here.', 'business-chat'), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '
', )); } add_action('widgets_init', 'business_chat_widgets_init'); /** * Enqueue scripts and styles. */ function business_chat_scripts() { wp_enqueue_style('business-chat-font-awesome', get_template_directory_uri() . '/css/font-awesome.min.css'); wp_enqueue_style('business-chat-style', get_stylesheet_uri()); wp_enqueue_script('business-chat-navigation', get_template_directory_uri() . '/js/navigation.js', array('jquery'), '20170823', true); wp_enqueue_script('business-chat-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20170823', true); wp_enqueue_script('business-chat-script', get_template_directory_uri() . '/js/script.js', array('jquery'), '20160720', true); wp_enqueue_script('business-chat-accessibility', get_template_directory_uri() . '/js/accessibility.js', array('jquery'), '20160720', true); if (is_singular() && comments_open() && get_option('thread_comments')) { wp_enqueue_script('comment-reply'); } } add_action('wp_enqueue_scripts', 'business_chat_scripts'); /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require get_template_directory() . '/inc/template-functions.php'; /** * Customizer additions. */ CustomizerController::GetInstance(); /** * Google fonts */ function business_chat_enqueue_assets() { // Include the file. require_once get_theme_file_path('webfont-loader/wptt-webfont-loader.php'); // Load the webfont. wp_enqueue_style( 'business-chat-fonts', wptt_get_webfont_url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700'), array(), '1.0' ); } add_action('wp_enqueue_scripts', 'business_chat_enqueue_assets'); /** * Dots after excerpt */ function business_chat_new_excerpt_more($more) { return '...'; } add_filter('excerpt_more', 'business_chat_new_excerpt_more'); /** * Filter the excerpt length to 50 words. * * @param int $length Excerpt length. * @return int (Maybe) modified excerpt length. */ function business_chat_excerpt_length($length) { if (is_admin()) { return $length; } return 50; } add_filter('excerpt_length', 'business_chat_excerpt_length', 999); /** * Blog Pagination */ if (!function_exists('business_chat_numeric_posts_nav')) { function business_chat_numeric_posts_nav() { $next_str = __('Next', 'business-chat'); $prev_str = __('Previous', 'business-chat'); global $wp_query; $total = $wp_query->max_num_pages; $big = 999999999; // need an unlikely integer if ($total > 1) { if (get_option('permalink_structure')) { $format = 'page/%#%/'; } else { $format = '&paged=%#%'; } echo wp_kses_post(paginate_links(array( 'base' => str_replace($big, '%#%', esc_url(get_pagenum_link($big))), 'format' => $format, 'current' => max(1, get_query_var('paged')), 'total' => $total, 'mid_size' => 1, 'end_size' => 0, 'type' => 'list', 'prev_text' => $prev_str, 'next_text' => $next_str, ))); } } } /** * Fix skip link focus in IE11. * * This does not enqueue the script because it is tiny and because it is only for IE11, * thus it does not warrant having an entire dedicated blocking script being loaded. * * @link https://git.io/vWdr2 */ function business_chat_skip_link_focus_fix() { // The following is minified via `terser --compress --mangle -- js/skip-link-focus-fix.js`. ?> 'Elementor', 'slug' => 'elementor', 'required' => false, ), array( 'name' => 'Superb Addons', 'slug' => 'superb-blocks', 'required' => false, ), array( 'name' => 'Live chat', 'slug' => 'creame-whatsapp-me', 'required' => false, ), ); $config = array( 'id' => 'business-chat', // Unique ID for hashing notices for multiple instances of TGMPA. 'default_path' => '', // Default absolute path to bundled plugins. 'menu' => 'tgmpa-install-plugins', // Menu slug. 'has_notices' => true, // Show admin notices or not. 'dismissable' => true, // If false, a user cannot dismiss the nag message. 'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag. 'is_automatic' => true, // Automatically activate plugins after installation or not. 'message' => '', // Message to output right before the plugins table. ); tgmpa($plugins, $config); } /** * Deactivate Elementor Wizard */ function business_chat_remove_elementor_onboarding() { update_option('elementor_onboarded', true); } add_action('after_switch_theme', 'business_chat_remove_elementor_onboarding'); /** * Checkbox sanitization callback example. * * Sanitization callback for 'checkbox' type controls. This callback sanitizes `$checked` * as a boolean value, either TRUE or FALSE. * * @param bool $checked Whether the checkbox is checked. * @return bool Whether the checkbox is checked. */ function business_chat_sanitize_checkbox($checked) { // Boolean check. return ((isset($checked) && true == $checked) ? true : false); } /** * Copyright and License for Upsell button by Justin Tadlock - 2016-2018 © Justin Tadlock. customizer button https://github.com/justintadlock/trt-customizer-pro */ require_once(trailingslashit(get_template_directory()) . 'justinadlock-customizer-button/class-customize.php'); // Initialize information content require_once trailingslashit(get_template_directory()) . 'inc/vendor/autoload.php'; use SuperbThemesThemeInformationContent\ThemeEntryPoint; ThemeEntryPoint::init([ 'type' => 'classic', // block / classic 'theme_url' => 'https://superbthemes.com/business-chat/', 'demo_url' => 'https://superbthemes.com/demo/business-chat/', 'features' => array( array('title'=>'Customize All Fonts'), array('title'=>'Customize All Colors'), array('title'=>'Show Full Posts on Blog.'), array('title'=>'Custom Copyright Text In Footer.'), array('title'=>'Show "Continue Reading" Button on blog.'), array('title'=>'Show Go To Top Button.'), array('title'=>'Hide/show Related Posts On Posts And Pages.'), array('title'=>'Activate Image Optimization.'), array('title'=>'Optimized Mobile Layout'), array('title'=>'Hide Author Name From Byline.'), array('title'=>'Hide/show Next/previous Buttons On Posts.'), array('title'=>'Hide/show Categories And Tags On Posts And Pages.'), array('title'=>'Hide/show Shopping Cart in Navigation.'), array('title'=>'Only Show Header On Front Page.'), array('title'=>'Add A About The Author Section.'), array('title'=>'Hide/Show Sidebar on WooCommerce Pages.'), array('title'=>'Hide/Show Sidebar on Blog Feed, Search Page and Archive Pages.'), array('title'=>'Hide/Show Header Button on Mobile.'), array('title'=>'Custom border radius on elements & buttons.'), array('title'=>'Only Display Header Widgets on Front Page.'), array('title'=>'Choose Between Multiple Navigation Layouts.'), array('title'=>'Choose Between Multiple Blog Layouts.'), array('title'=>'Show Recent Posts on 404 Page.'), array('title'=>'Show Recent Posts on 404 Page.'), array('title'=>'Add Custom Button To Header.'), array('title'=>'Hide/Show Header Tagline on Mobile.'), array('title'=>'Add Recent Posts Widget'), array('title'=>'Remove "Tag" from tag page title'), array('title'=>'Remove "Author" from author page title'), array('title'=>'Remove "Category" from author page title') ) ]);