Created
December 2, 2014 19:36
-
-
Save zachskaggs/cd34b14e01006c6599d0 to your computer and use it in GitHub Desktop.
Ninja Forms Rename CSV
This file contains 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
<?php | |
function nf_change_csv_name( $filename ) { | |
$filename = 'nameyourfilehere'; | |
return $filename; | |
} | |
add_filter( 'nf_subs_csv_filename', 'nf_change_csv_name' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment