woocommerce_order_get_formatted_billing_address

woocommerce_order_get_formatted_billing_address

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.7.1

apply_filters('woocommerce_order_get_formatted_billing_address') is found 1 times:

  • /includes/class-wc-order.php line 1037
    1033
    1034
    1035
    1036
    1037
    1038
    1039
    1040
    1041
    1042
    1043
         * @param string   $address     Formatted billing address string.
         * @param array    $raw_address Raw billing address.
         * @param WC_Order $order       Order data. @since 3.9.0
         */
        return apply_filters( 'woocommerce_order_get_formatted_billing_address', $address ? $address : $empty_content, $raw_address, $this );
    }
     
    /**
     * Get a formatted shipping address for the order.
     *
     * @param string $empty_content Content to show if no address is present. @since 3.3.0.