• Provider Login
if ( have_rows( 'organization_information' ) ) : while ( have_rows( 'organization_information' ) ) : the_row(); the_sub_field( 'organization_legal_name' ); the_sub_field( 'org_address' ); $organization_address = get_sub_field( 'organization_address' ); // var_dump( $organization_address ); the_sub_field( 'phone' ); the_sub_field( 'website' ); the_sub_field( 'organization_description' ); if ( have_rows( 'contact_information' ) ) : while ( have_rows( 'contact_information' ) ) : the_row(); the_sub_field( 'program_liaison' ); the_sub_field( 'telephone' ); the_sub_field( 'email' ); endwhile; endif; $associated_program = get_sub_field( 'associated_program' ); if ( $associated_program ) : foreach ( $associated_program as $post ) : setup_postdata ( $post ); the_title(); endforeach; wp_reset_postdata(); endif; endwhile; endif;