Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pankamilr/7ea01eb33137742b84efcc2596b67523 to your computer and use it in GitHub Desktop.
Save pankamilr/7ea01eb33137742b84efcc2596b67523 to your computer and use it in GitHub Desktop.
wordpress plugin rewrite media path
<?php
/*
Plugin Name: Rewrite Wordpress upload path
Plugin URI: http://mkdizajn.com
Description: Rewrites your image paths.
Version: 2.4
Author: kreso
Author URI: http://mkdizajn.com/
*/
function rewrite_url($rewrite)
{
$rewrite = str_replace('yoursite.com/wp-content/uploads/', 'media.yoursite.com/wp-content/uploads/', $rewrite);
return $rewrite;
}
add_filter('wp_get_attachment_url', 'rewrite_url');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment