Preserve options data during the pushing process in WP Staging

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');

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.