Slide 35
Slide 35 text
@tarendai https://tomjn.com
$wp_scripts->registered['wp-data']->extra['after'] = array();
wp_add_inline_script(
'wp-data',
implode( "\n", [
'( function() {',
' var userId = ' . get_current_user_ID() . ';',
' var storageKey = "WP_DATA_USER_" + userId;',
' var persistence = wp.data.plugins.persistence',
' wp.data.use( persistence, { storageKey: storageKey } );',
' persistence.__unstableMigrate({ storageKey: storageKey });',
' wp.data.use( wp.data.plugins.controls );',
'} )();',
])
);