Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save barrykooij/2dc3473a60289cea2c371ef19a88fa41 to your computer and use it in GitHub Desktop.
Save barrykooij/2dc3473a60289cea2c371ef19a88fa41 to your computer and use it in GitHub Desktop.
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