Skip to content

Instantly share code, notes, and snippets.

@zachskaggs
Created August 19, 2014 16:24
Show Gist options
  • Save zachskaggs/7030c263dfa79ab20253 to your computer and use it in GitHub Desktop.
Save zachskaggs/7030c263dfa79ab20253 to your computer and use it in GitHub Desktop.
<?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