Skip to content

Instantly share code, notes, and snippets.

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 shahariaazam/1ebbc99b83dee8f4581f28a870af5a1a to your computer and use it in GitHub Desktop.
Save shahariaazam/1ebbc99b83dee8f4581f28a870af5a1a 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('https://storage.googleapis.com/cdn.publicpowerpost.com', 'http://cdn.publicpowerpost.com', $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