pre-built websites

Customize Without Code

Super Fast Performance

Our Working Process

Three Simple Step To Start
Working Process

All pre-built websites with all features are included.' ); ?>

array( 'front' => array( 'post_type' => 'page', 'template' => 'template-starter.php', 'post_title' => esc_html_x( 'Create and grow your unique website today', 'Theme starter content', 'ayyash' ), 'post_content' => $home_content, ), 'about', 'blog', 'contact', ), // 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( 'primary' => array( 'name' => esc_html__( 'Primary menu', 'ayyash' ), 'items' => array( 'link_home', 'page_about' => array( 'type' => 'post_type', 'object' => 'page', 'object_id' => '{{about}}', ), 'page_blog' => array( 'type' => 'post_type', 'object' => 'page', 'object_id' => '{{blog}}', ), 'page_contact' => array( 'type' => 'post_type', 'object' => 'page', 'object_id' => '{{contact}}', ), ), ), 'mobile' => array( 'name' => esc_html__( 'Mobile Menu', 'ayyash' ), 'items' => array( 'link_home', 'page_about', 'page_blog', 'page_contact', 'link_facebook', 'link_twitter', 'link_instagram', 'link_email', ), ), ), 'widgets' => array( 'main-sidebar' => array( 'search' => array( 'search', array( 'title' => '', ), ), 'recent-posts' => array( 'recent-posts', array( 'title' => _x( 'Recent Posts', 'Theme starter content', 'ayyash' ), ), ), 'recent-comments' => array( 'recent-comments', array( 'title' => _x( 'Recent Comments', 'Theme starter content', 'ayyash' ), ), ), 'archives' => array( 'archives', array( 'title' => _x( 'Archives', 'Theme starter content', 'ayyash' ), ), ), 'categories' => array( 'categories', array( 'title' => _x( 'Categories', 'Theme starter content', 'ayyash' ), ), ), 'meta' => array( 'meta', array( 'title' => _x( 'Meta', 'Theme starter content', 'ayyash' ), ), ), ), 'footer-top-widget' => array( 'text_business_info' => array( 'title' => _x( 'Find Us', 'Theme starter content', 'ayyash' ), 'text' => implode( '', array( '' . _x( 'Address', 'Theme starter content', 'ayyash' ) . "\n", _x( '123 Main Street', 'Theme starter content', 'ayyash' ) . "\n" . _x( 'New York, NY 10001', 'Theme starter content', 'ayyash' ) . "\n\n", '' . _x( 'Hours', 'Theme starter content', 'ayyash' ) . "\n", _x( 'Monday–Friday: 9:00AM–5:00PM', 'Theme starter content', 'ayyash' ) . "\n" . _x( 'Saturday & Sunday: 11:00AM–3:00PM', 'Theme starter content', 'ayyash' ), ) ), 'filter' => true, 'visual' => true, ), 'text_about' => array( 'text', array( 'title' => _x( 'About This Site', 'Theme starter content', 'ayyash' ), 'text' => _x( 'This may be a good place to introduce yourself and your site or include some credits.', 'Theme starter content', 'ayyash' ), 'filter' => true, 'visual' => true, ), ), ), 'footer-widget' => array(), 'footer-bottom-widget' => array(), ), ); // phpcs:enable /** * Filters the array of starter content. * * @param array $starter_content Array of starter content. */ return apply_filters( 'themeoo_starter_content', $starter_content ); } // End of file starter-content.php.