I ran into this interesting feature yesterday I was not aware of. If you are trying to put options WordPress using Update_option serializing the data before actually causes unexpected behaviour.
The catch is that WordPress already serializes data send to the function. When invoking get_option the data will be unserialized. Obviously this causes an error if you try to unserialize the whole thing after that.
In short, just push an unserialized array unto update_option and everything will be fine!
update_option("stuff",array('foo','bar'));
$foobar = get_option("stuff");
See this blog post for more backgrounds.
Tags: get_option, serialize, update_option, wordpress
userphoto_the_author_thumbnail('', '', array(style => 'float:left')); ?>
the_author_meta('display_name') ?>
the_author_meta('description') ?>//related_posts(); ?>