Code-Snippets-Functions/Execute a function on a child site/WP Staging/preserve-option-data-pushing.txt

5 lines
208 B
Text

function wpstg_push_options_excl($options){
$newOptions = array('siteurl', 'home');
return array_merge($options, $newOptions);
}
add_filter('wpstg_preserved_options','wpstg_push_options_excl');