I would like to insert some shortcodes in the wordpress editor (v 3.3+)

The string looks like

[a_col]<p>some text or other stuff</p>[/a_col]

which is fine but if i use this line in JS

tinyMCE.get('content').setContent(string);

my shortcodes get surrounded by p tags which looks like

<p>[a_col]</p><p>some text or other stuff</p><p>[/a_col]</p>

I really don't like to touch native functions. Maybe there is a different solution to insert content

link|improve this question

75% accept rate
feedback

4 Answers

If you were to add_filter on 'the_content', you could probably parse the

tags out:

http://codex.wordpress.org/Function_Reference/add_filter

link|improve this answer
Don't like to do it serverside. I would like to send the correct markup on a submit action – revaxarts Feb 4 at 16:43
feedback

When in the "editor" switch to HTML mode from tinymce mode. That way it's not converting what you have in the textfield.

link|improve this answer
feedback
      <?php remove_filter (‘the_content’, ‘wpautop’); ?>

http://codex.wordpress.org/Function_Reference/remove_filter

link|improve this answer
feedback
up vote 0 down vote accepted

Here is my solution:

the shortcode function returns

<div class="col a">'.preg_replace('#^<\/p>|<p>$#', '', do_shortcode($content)).'</div>

this removes all unwanted p tags

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.