Skip to content

Instantly share code, notes, and snippets.

@phpmypython
Created July 11, 2017 16:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phpmypython/b57d102814eb09ca1dc0251b8ceb1c3a to your computer and use it in GitHub Desktop.
Save phpmypython/b57d102814eb09ca1dc0251b8ceb1c3a to your computer and use it in GitHub Desktop.
Update image paths wordpress
function update_content_url()
{
//provide the url and path that you would like used for image uploads.
return 'http://example.com/wp-content/uploads';
}
add_filter('pre_option_upload_url_path', 'update_content_url');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment