mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://wordpress.org/plugins/preserve-mainwp/ https://deliciousbrains.com/tweaking-wp-migrate-db-pro-actions-filters/
10 lines
257 B
Text
10 lines
257 B
Text
add_filter( 'wpmdb_preserved_options', function( $options ) {
|
|
$opts = [
|
|
'mainwp_child_uniqueId',
|
|
'mainwp_child_pubkey',
|
|
'mainwp_child_server',
|
|
'mainwp_child_nonce'
|
|
];
|
|
|
|
return array_merge($options, $opts);
|
|
});
|