WC_Order_Item_Product::get_item_download_url PHP 메소드

get_item_download_url() 공개 메소드

Get the Download URL.
public get_item_download_url ( integer $download_id ) : string
$download_id integer
리턴 string
    public function get_item_download_url($download_id)
    {
        $order = $this->get_order();
        return $order ? add_query_arg(array('download_file' => $this->get_variation_id() ? $this->get_variation_id() : $this->get_product_id(), 'order' => $order->get_order_key(), 'email' => urlencode($order->get_billing_email()), 'key' => $download_id), trailingslashit(home_url())) : '';
    }