array( 'front' => array( 'post_type' => 'page', 'post_title' => __( 'Front', 'blogbaster' ), 'post_content' => '

Welcome to Blogbaster.

Example of a Frontpage built via a blocks

Recent Posts

Heading

Heading

Heading

' ), 'about'=> array( 'post_type' => 'page', 'post_title' => __( 'About', 'blogbaster' ), 'post_content' => __( 'Blogbaster is a blogging theme that allows your reader to focus on your content. Blogbaster theme is designed for news agencies, travel blogs, business magazine, food recipes and all type of publishing or review site. Blogbaster theme is a compatible with Block Editor and WooCommerce plugin and also includes a featured post (pictured in the screenshot), custom logo support, footer widget area, sidebar position (left, right or w/o) setting, a search overlay modal, a social menu with icons.', 'blogbaster' ), ), 'blog'=> array( 'post_type' => 'page', 'post_title' => __( 'Blog Page', 'blogbaster' ) ), ), // Default to a static front page and assign the front and posts pages. 'options' => array( 'show_on_front' => 'page', // 'blog' 'page_on_front' => '{{front}}', 'page_for_posts' => '{{blog}}', ), // Set the Header Banner section theme mods 'theme_mods' => array( 'blog_layout' => 'grid', 'single_header_display' => 'alt', 'sidebar_position' => 'none' ), // Set up nav menu and assign to the "primary" location. 'nav_menus' => array( 'primary' => array( 'name' => __( 'Primary', 'blogbaster' ), 'items' => array( 'link_home', 'page_about', 'page_blog' ), ) ), ); /** * Filters theme array of starter content. * * @param array $starter_content Array of starter content. */ return apply_filters( 'blogbaster_starter_content', $starter_content ); }