I have a WordPress option that stores some data, like:
<h1>Header</h1>
<p>Paragraph</p>
[shortcodesomething/]
[shortcode]Contents[/shortcode]
I'm displaying this option's value using echo get_option('my_option'));.
Of course the shortcodes doesn't work, and I'm wondering how to force them to do what they are supposed to do?
echo do_shortcode(get_option('my_option')); doesn't work either (I know this is an absolutely wrong approach, but I don't know any other way of displaying them).

add_shortcodecalls inside a function hooked intoinit. – chrisguitarguy Nov 4 '11 at 3:33