/**
 * Theme Name:     Hello Elementor Child
 * Author:         Aquifer Growth Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */

/*Form Intake Function*/
/* Sample Shortcode
* [steponsite_intake
 * 
 *  */

/* function steponsite_intake_shortcode() {

    $url = get_field('form_embed_code');

    if (empty($url)) {
        return '';
    }

    $url = trim($url);

    return sprintf(
        '<iframe src="%s" style="width:100%%;height:1400px;border:0;" loading="lazy" title="Intake Form"></iframe>',
        esc_url($url)
    );
}

add_shortcode('steponsite_intake', 'steponsite_intake_shortcode'); */

function steponsite_intake_shortcode() {
    return 'SHORTCODE WORKING';
}

add_shortcode('steponsite_intake', 'steponsite_intake_shortcode');