Create and grow your unique website today

Explore all the possibilities with the Ayyash WordPress theme.

Banner
'; // Starter Template features section. $features = '
pre-built websites

Pre-Built Websites

Reduce website design time by using pixel perfect ready to use website

Customize Without Code

Customize Without Code

Reduce website design time by using pixel perfect ready to use website

Super Fast Performance

Super Fast Performance

Reduce website design time by using pixel perfect ready to use website

'; // Starter Template process section. $process = '

Our Working Process

Three Simple Step To Start
Working Process

Find effective digital reach or your business, powered by human behavior, driven by data we provide experts to create

Research Project

Find effective digital reach or your business, powered by human behaviour.

Targeting

Find effective digital reach or your business, powered by human behaviour.

Results

Find effective digital reach or your business, powered by human behaviour.

'; // Starter Template Service section. $services = '

Some More Reasons to Love Our Services

High Performance

Find effective digital reach or your business powered by human

Investment Planning

To obtain higher performance Our leaders first identify

Risk Management

Obstacles to forward progress and then develop a coherent

Corporate Finance

Find effective digital reach or your business powered by human

Premium Support

Find effective digital reach or your business powered by human

Business Analysis

Find effective digital reach or your business powered by human

'; // Featured work template. $featured_work = '

Featured Works

Find effective digital reach or your business, powered by human behaviour

Awesome Mobile App

Jul 4, 2022

Man Illustration

Jul 4, 2022

Mobile App Development

Jul 4, 2022

'; // Starter template cta section. $contact = '

We provide Best Quality Websites for business

Find effective digital reach or your business, powered by human behaviour, driven by data we provide experts.

'; // Starter template teamwork section. $teamwork = '

achievement

Teamwork and intelligence win championships.

Find effective digital reach or your business, powered by human behaviour, driven by data we provide experts to create. To obtain higher performance, Our leaders first identify the critical obstacles

290

Years of working experience

112

Years of working experience

915

Years of working experience

'; // Starter content posts. $posts = '

Latest Posts

Find effective digital reach or your business, powered by human behaviour

Why every startup should

More off this less hello salamander lied porpoise much over tightly...

Nov 3, 2022

Jul 4, 2022

12 Ways to monetize your

More off this less hello salamander lied porpoise much over tightly...

Nov 3, 2022

Jul 4, 2022

How to start a podcast

More off this less hello salamander lied porpoise much over tightly...

Nov 3, 2022

Jul 4, 2022

'; // Starter Content. $cta = '

Ready to get started?

Download your copy of Ayyash today and create your next website faster than ever.
All pre-built websites with all features are included.

'; $footer_top = ' '; /** * Post Content */ $home_content = $banner; $home_content .= $features; $home_content .= $process; $home_content .= $services; $home_content .= $featured_work; $home_content .= $contact; $home_content .= $teamwork; $home_content .= $posts; $home_content .= $cta; $home_content .= $footer_top; // Define and register starter content to showcase the theme on new sites. $starter_content = array( // Specify the core-defined pages to create and add custom thumbnails to some of them. 'posts' => 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.