' . esc_html_x( 'Build Bold. Build Beautiful.', 'Theme starter content', 'accepta' ) . '

' . esc_html_x( 'Accepta is a flexible, modern WordPress theme. Use the hero section above and this content to showcase your business. Customize everything in the Theme Customizer.', 'Theme starter content', 'accepta' ) . '

' . esc_html_x( 'Get started', 'Theme starter content', 'accepta' ) . '

' . esc_html_x( 'Edit this page or add new pages from the dashboard. Enable the hero section and overlay header in Customize to get the full look.', 'Theme starter content', 'accepta' ) . '

' . esc_html_x( 'Why Choose Accepta', 'Theme starter content', 'accepta' ) . '

' . esc_html_x( 'Flexible & Modern', 'Theme starter content', 'accepta' ) . '

' . esc_html_x( 'Clean layout and responsive design that works on any device. Built with the block editor so you can rearrange and style content easily.', 'Theme starter content', 'accepta' ) . '

' . esc_html_x( 'Elementor Ready', 'Theme starter content', 'accepta' ) . '

' . esc_html_x( 'Use Elementor for drag-and-drop page building. The theme integrates with popular page builders so you can create custom layouts without code.', 'Theme starter content', 'accepta' ) . '

' . esc_html_x( 'Fully Customizable', 'Theme starter content', 'accepta' ) . '

' . esc_html_x( 'Control hero, header, colors, and typography from the Theme Customizer. No coding required to match your brand.', 'Theme starter content', 'accepta' ) . '

' . esc_html_x( 'Designed for Your Success', 'Theme starter content', 'accepta' ) . '

' . esc_html_x( 'Accepta gives you a professional starting point for your website. Customize the hero image, add your own content, and launch with confidence. The theme is built for clarity and performance.', 'Theme starter content', 'accepta' ) . '

' . esc_attr_x( 'Accepta theme', 'Theme starter content image alt', 'accepta' ) . '

' . esc_html_x( 'Accepta made it easy to launch our site. Clean design, easy to customize, and it looks great on every device.', 'Theme starter content', 'accepta' ) . '

' . esc_html_x( '— Happy Customer', 'Theme starter content testimonial citation', 'accepta' ) . '
'; } /** * Return the array of starter content for the theme. * * Passes it through the `accepta_starter_content` filter before returning. * * @return array Filtered array of args for the starter content. */ function accepta_get_starter_content() { $starter_content = array( 'widgets' => array( 'sidebar-1' => array( 'search', 'recent-posts', 'archives', ), 'footer-1' => array( 'text_business_info', ), 'footer-2' => array( 'recent-posts', ), 'footer-3' => array( 'search', ), ), 'posts' => array( 'front' => array( 'post_type' => 'page', 'post_title' => esc_html_x( 'Homepage', 'Theme starter content', 'accepta' ), 'post_content' => accepta_get_front_page_starter_content(), ), 'blog' => array( 'post_type' => 'page', 'post_title' => esc_html_x( 'Blog', 'Theme starter content', 'accepta' ), ), 'about' => array( 'post_type' => 'page', 'post_title' => esc_html_x( 'About', 'Theme starter content', 'accepta' ), 'post_content' => '

' . esc_html_x( 'About Us', 'Theme starter content', 'accepta' ) . '

' . esc_html_x( 'This is a sample About page. Replace this text with your own story.', 'Theme starter content', 'accepta' ) . '

', ), 'contact' => array( 'post_type' => 'page', 'post_title' => esc_html_x( 'Contact', 'Theme starter content', 'accepta' ), 'post_content' => '

' . esc_html_x( 'Contact', 'Theme starter content', 'accepta' ) . '

' . esc_html_x( 'Use this page to share your contact details or a contact form.', 'Theme starter content', 'accepta' ) . '

', ), ), 'options' => array( 'show_on_front' => 'page', 'page_on_front' => '{{front}}', 'page_for_posts' => '{{blog}}', ), 'theme_mods' => array( 'accepta_sidebar_layout' => 'none', ), 'nav_menus' => array( 'menu-1' => array( 'name' => esc_html__( 'Primary', 'accepta' ), 'items' => array( 'link_home', 'page_about', 'page_blog', 'page_contact', ), ), ), ); return apply_filters( 'accepta_starter_content', $starter_content ); }