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' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => __( 'Primary menu', 'businessup' ), 'top' => __( 'Top Menu', 'businessup' ), 'social' => __( 'Social Links Menu', 'businessup' ), ) ); /* * 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( 'businessup_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); // Set up the woocommerce feature. add_theme_support( 'woocommerce'); //Custom logo //Custom logo add_theme_support( 'custom-logo'); // custom header Support $args = array( 'default-image' => get_template_directory_uri() .'/images/sub-header.jpg', 'width' => '1600', 'height' => '500', 'flex-height' => false, 'flex-width' => false, 'header-text' => true, 'default-text-color' => '#143745' ); add_theme_support( 'custom-header', $args ); } endif; add_action( 'after_setup_theme', 'businessup_setup' ); function businessup_the_custom_logo() { if ( function_exists( 'the_custom_logo' ) ) { the_custom_logo(); } } add_filter('get_custom_logo','businessup_logo_class'); function businessup_logo_class($html) { $html = str_replace('custom-logo-link', 'navbar-brand', $html); return $html; } /** * 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 businessup_content_width() { $GLOBALS['content_width'] = apply_filters( 'businessup_content_width', 640 ); } add_action( 'after_setup_theme', 'businessup_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function businessup_widgets_init() { $businessup_footer_column_layout = get_theme_mod('businessup_footer_column_layout',3); $businessup_footer_column_layout = 12 / $businessup_footer_column_layout; register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'businessup' ), 'id' => 'sidebar-1', 'description' => '', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '
', 'after_title' => '
', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Widget Area', 'businessup' ), 'id' => 'footer_widget_area', 'description' => '', 'before_widget' => '', 'before_title' => '
', 'after_title' => '
', ) ); register_sidebar( array( 'name' => esc_html__( 'Service Home Widget Area', 'businessup' ), 'id' => 'servicehome_widget_area', 'description' => '', 'before_widget' => '
', 'after_widget' => '
', ) ); } add_action( 'widgets_init', 'businessup_widgets_init' ); function businessup_register_widgets() { register_widget('businessup_slider_widget'); register_widget('businessup_service_widget'); $businessup_sidebars = array ( 'sidebar-slider' => 'sidebar-slider'); /* Register sidebars */ foreach ( $businessup_sidebars as $businessup_sidebar ): if( $businessup_sidebar == 'sidebar-slider' ): $businessup_name = __('Slider Section Widgets', 'businessup'); else: $businessup_name = $businessup_sidebar; endif; register_sidebar( array ( 'name' => $businessup_name, 'id' => $businessup_sidebar, 'before_widget' => '
', 'after_widget' => '
' ) ); endforeach; } add_action('widgets_init', 'businessup_register_widgets'); /*-----------------------------------------------------------------------------------*/ /* customizer-controls /*-----------------------------------------------------------------------------------*/ /* Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; //Editor Styling add_editor_style( array( 'css/editor-style.css') ); //Read more Button on slider & Post function businessup_read_more() { global $post; $readbtnurl = '
'.__('Read More','businessup').''; return $readbtnurl; } add_filter( 'the_content_more_link', 'businessup_read_more' ); function businessup_import_data_notice() { ?>

', '' ); ?>