Preserve options data during the pushing process in WP Staging on child sites.
Snippet Type
Execute on Child Sites
Snippet
function wpstg_push_options_excl($options){
$newOptions = array('siteurl', 'home');
return array_merge($options, $newOptions);
}
add_filter('wpstg_preserved_options','wpstg_push_options_excl');