Created
August 19, 2014 16:24
-
-
Save zachskaggs/7030c263dfa79ab20253 to your computer and use it in GitHub Desktop.
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_uploads_dir( $upload_dir ) { | |
global $ninja_forms_processing; | |
$upload_dir = '/my/directory/here'; | |
return $upload_dir; | |
} | |
add_filter( 'ninja_forms_uploads_dir', 'nf_change_uploads_dir' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment