Browse: Home / Hooks /

learndash_csv_download_after_headers

do_action( 'learndash_csv_download_after_headers' )

Fires after setting CSV download headers.


Description #


Source #

File: includes/admin/class-learndash-admin-settings-data-reports.php


Examples #

Note: Extended code example below not guaranteed, you may need to consult with a developer

 <?php
/**
 * Example usage for learndash_csv_download_after_headers action.
 */
add_action(
	'learndash_csv_download_after_headers',
	function() {

		// Add your custom code here
	}
);
 

Changelog #

Changelog
Version Description
2.4.7 Introduced.