mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-04 12:22:24 +08:00
5 lines
208 B
Text
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');
|