Skip to content

Instantly share code, notes, and snippets.

View scotcrop's full-sized avatar

Scott scotcrop

View GitHub Profile
@devinsays
devinsays / staging-update-routine.php
Last active February 7, 2021 15:02
staging-update-routine.php
<?php
/**
* Update site to use test mode in local and staging environments
*/
function prefix_env_settings() {
// If settings have already been updated, return early
if ( 1 == get_transient( 'staging-settings-updated' ) ) {
return;
}