Skip to content

Instantly share code, notes, and snippets.

@landbryo
Last active May 27, 2019 17:01
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 landbryo/a187c595d9390b8a1c7055d1ced61694 to your computer and use it in GitHub Desktop.
Save landbryo/a187c595d9390b8a1c7055d1ced61694 to your computer and use it in GitHub Desktop.
Rewrite image URL for local development
function sc_rewrite_url( $rewrite ) {
$rewrite = str_replace( 'domain.local/wp-content/uploads/', 'domain.com/wp-content/uploads/', $rewrite );
return $rewrite;
}
add_filter( 'wp_get_attachment_url', 'sc_rewrite_url' );
add_filter( 'wp_calculate_image_srcset_meta', function() { return false; } );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment