LLMS_Order::get_customer_full_address()

Retrieve the customer’s full billing address


Return Return

(string)


Top ↑

Source Source

File: includes/models/model.llms.order.php

707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
public function get_customer_full_address() {
 
    $billing_address_1 = $this->get( 'billing_address_1' );
    if ( empty( $billing_address_1 ) ) {
        return '';
    }
 
    $address   = array(
        trim( $billing_address_1 . ' ' . $this->get( 'billing_address_2' ) ),
    );
    $address[] = trim( $this->get( 'billing_city' ) . ' ' . $this->get( 'billing_state' ) );
    $address[] = $this->get( 'billing_zip' );
    $address[] = llms_get_country_name( $this->get( 'billing_country' ) );
 
    return implode( ', ', array_filter( $address ) );
}


Top ↑

Changelog Changelog

Changelog
Version Description
5.2.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.