Tagged Questions
1
vote
2answers
1k views
Shortcode from a widget is wrapped in unwanted <p> element
I'm using Black Studio TinyMCE Widget as a rich text editor widget. In a sidebar I inserted the TinyMCE widget with a [testimonial] shortcode and some content after it.
For example:
[testimonial]
...
1
vote
1answer
2k views
Stop auto formatting in shortcodes
Is there a way I can stop Wordpress auto formatting everything I enter inside a shortcode tag?
A the moment I want to include a h2, a paragraph and another shortcode, but everytime I do Wordpress ...
4
votes
2answers
528 views
Remove wptexturize from a shortcode?
Is there a way to remove wptexturize only for a certain shortcode?
0
votes
3answers
1k views
Automatically added brs and paragraphs?
Here's my very simple shortcode:
function box_shortcode( $atts, $content = null ) {
extract( shortcode_atts( array(
'width' => 'auto',
'height' => 'auto',
...