tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); // for custom logo add_theme_support( 'custom-logo', array( 'height' => 248, 'width' => 248, 'flex-height' => true, ) ); /* * 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' ); // Thumbnail sizes add_image_size( 'business_booster-featured', 600, 600, true ); add_image_size( 'business_booster-featured-single', 980, 600, true ); add_editor_style('editor-style.css'); set_post_thumbnail_size( 825, 510, true ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary', 'business-booster' ), ) ); /* * 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', ) ); // custom logo if ( ! function_exists( 'business_booster_custom_logo' ) ) : /** * Displays the optional custom logo. * * Does nothing if the custom logo is not available. * * @since Twenty Fifteen 1.5 */ function business_booster_custom_logo() { if ( function_exists( 'the_custom_logo' ) ) { the_custom_logo(); } } endif; // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'business_booster_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); } endif; add_action( 'after_setup_theme', 'business_booster_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_booster_content_width() { $GLOBALS['content_width'] = apply_filters( 'business_booster_content_width', 640 ); } add_action( 'after_setup_theme', 'business_booster_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function business_booster_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'business-booster' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'business-booster' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Homepage News Section', 'business-booster' ), 'id' => 'home-news-section', 'description' => esc_html__( 'Add widgets here.', 'business-booster' ), 'before_widget' => '
', 'after_widget' => '
', ) ); register_sidebar(array( 'id' => 'business-footer1', 'name' => esc_html__( 'Footer 1', 'business-booster' ), 'description' => esc_html__( 'Add widgets here.', 'business-booster' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'id' => 'business-footer2', 'name' => esc_html__( 'Footer 2', 'business-booster' ), 'description' => esc_html__( 'Add widgets here.', 'business-booster' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'id' => 'business-footer3', 'name' => esc_html__( 'Footer 3', 'business-booster' ), 'description' => esc_html__( 'Add widgets here.', 'business-booster' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'id' => 'business-footer4', 'name' => esc_html__( 'Footer 4', 'business-booster' ), 'description' => esc_html__( 'Add widgets here.', 'business-booster' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'id' => 'business-footer5', 'name' => esc_html__( 'Footer 5', 'business-booster' ), 'description' => esc_html__( 'Add widgets here.', 'business-booster' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'id' => 'business-footer6', 'name' => esc_html__( 'Footer 6', 'business-booster' ), 'description' => esc_html__( 'Add widgets here.', 'business-booster' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); } add_action( 'widgets_init', 'business_booster_widgets_init' ); /** * Enqueue scripts and styles. */ function business_booster_scripts() { wp_enqueue_style( 'bootstrap', get_template_directory_uri() .'/css/bootstrap.min.css',array(),'3.3.4' ); wp_enqueue_style( 'font-awesome', get_template_directory_uri() .'/css/font-awesome-4.7.0/css/font-awesome.min.css',array(),'4.0.3' ); wp_enqueue_style( 'business-booster-style', get_stylesheet_uri() ); wp_enqueue_style( 'business-booster-montserrat-font','https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i', array(), '1.0', 'all' ); wp_enqueue_style( 'business-booster-lato-font','https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i', array(), '1.0', 'all' ); wp_enqueue_script( 'business-booster-navigation', get_template_directory_uri() . '/js/navigation.js', array('jquery'), '20151215', true ); wp_enqueue_script( 'bootstrap', get_template_directory_uri() . '/js/bootstrap.min.js', array('jquery'), '3.3.5', true ); wp_enqueue_script( 'business-booster-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array('jquery'), '20151215', true ); wp_enqueue_script( 'business-booster-custom-js', get_template_directory_uri() . '/js/business-booster-custom-js.js', array('jquery'), '20151215', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'business_booster_scripts' ); /* slider js for frontend */ add_action('wp_head','business_booster_frontend_script'); function business_booster_frontend_script() { wp_enqueue_script( 'jquery-slick-js', get_template_directory_uri() . '/js/slick.min.js', array('jquery'), '20151215', true ); } // Display an optional post thumbnail. if ( ! function_exists( 'business_booster_post_thumbnail')) : function business_booster_post_thumbnail() { if ( post_password_required() || is_attachment() || ! has_post_thumbnail() ) { return; } if ( is_singular() ) : ?>
esc_attr(get_the_title()))); ?>
%2$s

', esc_url( get_permalink( get_the_ID() ) ), /* translators: %s: Name of current post */ sprintf( __( 'Continue reading "%s"', 'business-booster' ), get_the_title( get_the_ID() ) ) ); return ' … ' . $more; } add_filter('excerpt_more', 'business_booster_excerpt_more'); /*Business Booster Recent Post Widget*/ require get_template_directory() . '/inc/widgets/business_booster_recent_post.php'; /** * 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'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php';