Been at this for the past 5 hours and I\'m stumped. Tried the most ridiculous functions to try and fix it but to no avail.
I\'m retrieving data from a WP database. The
You can unserialize twice:
$unserialized = unserialize( unserialize( $usermeta['facebookmeta'] ) );
NB: There's no need to serialize when using update_user_meta, it serializes automatically for you, cf. maybe_serialize: http://codex.wordpress.org/Function_Reference/maybe_serialize
update_user_meta
maybe_serialize