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

To live a creative life, we must lose our fear.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas quis eros sed risus sollicitudin fringilla dictum in metus.

How do I plan my trip?

Plan a journey

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas quis eros sed risus sollicitudin fringilla dictum in metus.

Find a place

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas quis eros sed risus sollicitudin fringilla dictum in metus.

Go to destinations

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas quis eros sed risus sollicitudin fringilla dictum in metus.

Latest Articles

About Me

PHOTOGRAPHER & BLOGGER

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc vehicula libero nec ipsum bibendum rhoncus. In fermentum non orci nec pellentesque. Donec sollicitudin feugiat ante, vel feugiat dolor porta eu. Pellentesque elementum ligula metus, id sagittis ligula sagittis nec.

' ), 'about-my-job' => array( 'post_type' => 'page', 'post_title' => esc_html_x( 'About Me', 'Theme starter content', 'canvi' ), 'thumbnail' => '{{image-logo}}', ), 'features'=> array( 'post_type' => 'page', 'post_title' => esc_html_x( 'Features', 'Theme starter content', 'canvi' ) ), 'blog'=> array( 'post_type' => 'page', 'post_title' => esc_html_x( 'Blog', 'Theme starter content', 'canvi' ) ), 'portfolio'=> array( 'post_type' => 'page', 'post_title' => esc_html_x( 'Portfolio', 'Theme starter content', 'canvi' ) ), 'contact' => array( 'post_type' => 'page', 'post_title' => esc_html_x( 'Contact', 'Theme starter content', 'canvi' ) ), ), 'attachments' => array( 'image-logo' => array( 'post_title' => _x( 'Custom Logo', 'Theme starter content', 'canvi' ), 'file' => 'starter/images/logo-canvi.png' ), ), // 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', 'canvi' ), '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'=> array( 'type' => 'post_type', 'object' => 'page', 'object_id' => '{{about-my-job}}' ), 'page_blog', 'page_contact', ), ), 'footer_pages' => array( 'name' => esc_html__( 'Footer menu', 'canvi' ), 'items' => array( 'link_home', // Note that the core "home" page is actually a link in case a static front page is not used. 'page_features', 'page_blog', 'page_portfolio', 'page_contact', ), ), // Assign a menu to the "footer" location. 'social_menu' => array( 'name' => esc_html__( 'Social menu', 'canvi' ), 'items' => array( 'link_facebook', 'link_instagram', 'link_twitter', 'link_pinterest', ), ), ), 'theme_mods' => array( 'display_title_and_tagline' => false, 'custom_logo' => '{{image-logo}}' ), ); /** * Filters the array of starter content. * * @param array $starter_content Array of starter content. * * @since 1.0.0 * */ return apply_filters( 'canvi_starter_content', $starter_content ); }