acfcs_upload_folder()

Description

With this filter you can override the upload folder where the csv files are stored.

IMPORTANT: The returned value must be a local path, not an url.

Usage

  1. function acfcs_upload_folder( $folder ) {
  2.     $folder = 'your/path';
  3.  
  4.     return $folder;
  5. }
  6. add_filter( 'acfcs_upload_folder', 'acfcs_upload_folder' );

Used in