WC_Download_Handler::download_file_redirect()public staticWC 1.0

Redirect to a file to start the download.

Метод класса: WC_Download_Handler{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$result = WC_Download_Handler::download_file_redirect( $file_path, $filename );
$file_path(строка) (обязательный)
File path.
$filename(строка)
File name.
По умолчанию: ''

Код WC_Download_Handler::download_file_redirect() WC 8.7.0

public static function download_file_redirect( $file_path, $filename = '' ) {
	header( 'Location: ' . $file_path );
	exit;
}