Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created February 27, 2018 13:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save billerickson/01a5f710e9d1d9f07bf644f6ff8272a6 to your computer and use it in GitHub Desktop.
Save billerickson/01a5f710e9d1d9f07bf644f6ff8272a6 to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin Name: Local Settings
* Description: Code that should only run in local environment
* Version: 1.0
* Author: Bill Erickson
* Author URI: http://www.billerickson.net
* License: MIT
* License URI: http://www.opensource.org/licenses/mit-license.php
*/
/**
* Media URL
*
*/
function be_local_media_url( $url ) {
return 'http://sample.wpengine.com';
}
add_filter( 'be_media_from_production_url', 'be_local_media_url' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment