mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
7 lines
304 B
Text
7 lines
304 B
Text
add_filter( 'gform_media_upload_path', 'change_media_upload_path', 10, 3 );
|
|
function change_media_upload_path( $upload_dir, $form_id, $post_id ) {
|
|
$upload_dir['path'] = '/home/public_html/sitedomain/gf-uploads/';
|
|
$upload_dir['url'] = 'http://sitedomain.com/gf-uploads/';
|
|
|
|
return $upload_dir;
|
|
}
|