WC_Abstract_Legacy_Order::get_download_url PHP 메소드

get_download_url() 공개 메소드

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