__( 'Normal Page', 'thrive-cb' ), 'layout' => 'normal', 'order' => 0, 'picture' => tve_editor_url( 'editor/css/images/page-wizard/normal-page.png' ), 'text' => array( __( 'Used for creating content pages that should look like other content on your site.', 'thrive-cb' ), __( 'These pages use theme templates and are useful for creating content rich company pages (about us, services, pricing etc.).', 'thrive-cb' ), ), ), array( 'title' => __( 'Pre-built Landing Page', 'thrive-cb' ), 'layout' => 'lp', 'order' => 100, 'picture' => tve_editor_url( 'editor/css/images/page-wizard/pre-built-lp.png' ), 'text' => array( __( 'Choose from our library over 200 pre-built landing pages.', 'thrive-cb' ), __( 'This is mostly useful if you want to build a marketing page but don’t want the hassle of designing it yourself.', 'thrive-cb' ), __( 'Simply choose a design you like and modify to fit your needs.', 'thrive-cb' ), ), ), ) ); /** * Sort the items array based on order index */ usort( $items, function ( $a, $b ) { return $a['order'] - $b['order']; } ) ?>