array( 'front' => array( 'post_type' => 'page', 'post_title' => esc_html_x( 'Create your website with blocks', 'Theme starter content', 'blockfold' ), 'post_content' => '

News

Advertisement banner

Get More Content For Subscribers

Please enter yout email to get full access!

' ), 'about-my-job' => array( 'post_type' => 'page', 'post_title' => esc_html_x( 'About Me', 'Theme starter content', 'blockfold' ) ), 'features'=> array( 'post_type' => 'page', 'post_title' => esc_html_x( 'Features', 'Theme starter content', 'blockfold' ) ), 'blog'=> array( 'post_type' => 'page', 'post_title' => esc_html_x( 'Blog', 'Theme starter content', 'blockfold' ) ), 'portfolio'=> array( 'post_type' => 'page', 'post_title' => esc_html_x( 'Portfolio', 'Theme starter content', 'blockfold' ) ), 'contact' => array( 'post_type' => 'page', 'post_title' => esc_html_x( 'Contact', 'Theme starter content', 'blockfold' ) ), ), // Default to a static front page and assign the front and posts pages. 'options' => array( 'show_on_front' => 'page', 'page_on_front' => '{{front}}', 'page_for_posts' => '{{blog}}', ), // Set up nav menus for each of the two areas registered in the theme. 'nav_menus' => array( // Assign a menu to the "primary" location. 'primary' => array( 'name' => esc_html__( 'Primary menu', 'blockfold' ), 'items' => array( 'link_home', // Note that the core "home" page is actually a link in case a static front page is not used. 'page_about-my-job', 'page_features', 'page_blog', 'page_portfolio', 'page_contact' ), ), 'footer_pages' => array( 'name' => esc_html__( 'Footer menu', 'blockfold' ), 'items' => array( 'link_home', // Note that the core "home" page is actually a link in case a static front page is not used. 'page_about-my-job', 'page_features', 'page_blog', 'page_portfolio', 'page_contact', ), ), // Assign a menu to the "footer" location. 'social_menu' => array( 'name' => esc_html__( 'Social menu', 'blockfold' ), 'items' => array( 'link_facebook', 'link_instagram', 'link_twitter', 'link_pinterest', ), ), ), ); /** * Filters the array of starter content. * * @param array $starter_content Array of starter content. * * * */ return apply_filters( 'blockfold_starter_content', $starter_content ); }