Skip to content

Instantly share code, notes, and snippets.

@vinacode
Created July 4, 2014 02:48
Show Gist options
  • Save vinacode/92d882623de8ebf09c38 to your computer and use it in GitHub Desktop.
Save vinacode/92d882623de8ebf09c38 to your computer and use it in GitHub Desktop.
Wordpress customize upload media directory
<?php
/**================Customize upload dir url===================**/
function my_custom_medias_dir( $pathdata ) {
$subdir = '/medias'.$pathdata['subdir'];
$pathdata['path'] = str_replace($pathdata['subdir'], $subdir, $pathdata['path']);
$pathdata['url'] = str_replace($pathdata['subdir'], $subdir, $pathdata['url']);
$pathdata['subdir'] = str_replace($pathdata['subdir'], $subdir, $pathdata['subdir']);
return $pathdata;
}
add_filter('upload_dir' , 'my_custom_medias_dir');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment