Created
March 6, 2017 10:54
-
-
Save barrykooij/2dc3473a60289cea2c371ef19a88fa41 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function dlm_csv_export_custom_meta( $data ) { | |
$data[] = 'my_custom_download_meta_field'; | |
$data[] = 'my_custom_download_meta_field_2'; | |
return $data; | |
} | |
add_filter( 'dlm_ce_extra_fields_download_meta', 'dlm_csv_export_custom_meta' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment