stream(); $stream->start_task( __( 'Migrating plugin meta', 'content-control' ) ); $remaps = [ 'jp_cc_reviews_installed_on' => 'content_control_installed_on', ]; foreach ( $remaps as $key => $new_key ) { $value = \get_option( $key, null ); if ( null !== $value ) { \update_option( $new_key, $value ); \delete_option( $key ); } } $stream->complete_task( __( 'Plugin meta migrated', 'content-control' ) ); } }