Use stripslashes for it is rather mysql sanitation than html encoding issue.
http://www.php.net/manual/en/function.stripslashes.php
~epsi – iluni.org
Sorry for waking up this old thread.
Cheers, ronronmx…
Now we have a working solution using very simple shortcode.
add_shortcode('noteaser', 'shortcode_noteaser');
function shortcode_noteaser($atts, $content = null)
{
if (is_single()) return '';
else return do_shortcode($content);
}
Then in your post
[noteaser]
<p>Noticer mess-age</p>
[message text="you can run another shortcode inside noteaser shortcode"]
[/noteaser]
<!--more-->
It might help little for quick fix.*
~epsi
*note:
Dunno if shortcode is an elegant solution (politically correct).
I’m new in wordpress, and still confused about excerpt.