WC_Download_Handler::download_file_redirect
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 Download Handler::download file redirect WC 10.8.1
public static function download_file_redirect( $file_path, $filename = '' ) {
header( 'Location: ' . $file_path );
exit;
}