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', 'bizwhoop' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'comment-list', 'gallery', 'caption', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'bizwhoop_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); // Set up the woocommerce feature. add_theme_support( 'woocommerce'); } add_action( 'after_setup_theme', 'bizwhoop_setup' ); function bizwhoop_the_custom_logo() { if ( function_exists( 'the_custom_logo' ) ) { the_custom_logo(); } } add_filter('get_custom_logo','bizwhoop_logo_class'); function bizwhoop_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 bizwhoop_content_width() { $GLOBALS['content_width'] = apply_filters( 'bizwhoop_content_width', 640 ); } add_action( 'after_setup_theme', 'bizwhoop_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function bizwhoop_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'bizwhoop' ), 'id' => 'sidebar-1', 'description' => '', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '
', 'after_title' => '
', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Widget Area', 'bizwhoop' ), 'id' => 'footer_widget_area', 'description' => '', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '
', 'after_title' => '
', ) ); } add_action( 'widgets_init', 'bizwhoop_widgets_init' ); /*-----------------------------------------------------------------------------------*/ /* Media Upload /*-----------------------------------------------------------------------------------*/ //Get slider excerpt function get_slider_excerpt() { global $post; $excerpt = get_the_content(); $excerpt = strip_tags(preg_replace(" (\[.*?\])",'',$excerpt)); $excerpt = strip_shortcodes($excerpt); $original_len = strlen($excerpt); $excerpt = substr($excerpt, 0, 100); $len=strlen($excerpt); if($original_len>200) { $excerpt = $excerpt; return $excerpt . '
'.__("Read More","bizwhoop").'
'; } else { return $excerpt; } } //Get service excerpt function get_service_excerpt() { global $post; $excerpt = get_the_content(); $excerpt = strip_tags(preg_replace(" (\[.*?\])",'',$excerpt)); $excerpt = strip_shortcodes($excerpt); $original_len = strlen($excerpt); $excerpt = substr($excerpt, 0, 60); $len=strlen($excerpt); if($original_len>100) { $excerpt = $excerpt; return $excerpt . '
'.__("Read More","bizwhoop").'
'; } else { return $excerpt; } } the_tags(); function bizwhoop_enqueue_customizer_controls_styles() { wp_register_style( 'bizwhoop-customizer-controls', get_template_directory_uri() . '/css/customizer-controls.css', NULL, NULL, 'all' ); wp_enqueue_style( 'bizwhoop-customizer-controls' ); } add_action( 'customize_controls_print_styles', 'bizwhoop_enqueue_customizer_controls_styles' ); // display custom admin notice function bizwhoop_custom_admin_notice() { ?>

How to Create homepage like this link following Documentaion

Use all the sections of the homepage while using customize settings

'.__('Read More','bizwhoop').''; return $readbtnurl; } add_filter( 'the_content_more_link', 'bizwhoop_read_more' ); $theme = wp_get_theme(); if ( 'Bizwhoop' == $theme->name){ add_action('after_switch_theme', 'bizwhoop_companion_install_function'); function bizwhoop_companion_install_function() { $item_details_page = get_option('item_details_page'); if(!$item_details_page){ //post status and options $post = array( 'comment_status' => 'closed', 'ping_status' => 'closed' , 'post_author' => 1, 'post_date' => date('Y-m-d H:i:s'), 'post_name' => 'Home', 'post_status' => 'publish' , 'post_title' => 'Home', 'post_type' => 'page', ); //insert page and save the id $newvalue = wp_insert_post( $post, false ); if ( $newvalue && ! is_wp_error( $newvalue ) ){ update_post_meta( $newvalue, '_wp_page_template', 'template-frontpage.php' ); // Use a static front page $page = get_page_by_title('Home'); update_option( 'show_on_front', 'page' ); update_option( 'page_on_front', $page->ID ); } //save the id in the database update_option( 'item_details_page', $newvalue ); } } }