Support Forums for LiveMesh Themes & Plugins › Forums › Enigmatic Theme Support › Weird post formatting with line breaks and empty paragraphs with shortcodes › Reply To: Need help with formatting posts
April 8, 2013 at 10:41 am
#529

Keymaster
This is a WordPress issue when using shortcodes. Unwanted line breaks and empty paragraphs are easy to sneak in when designing your content. To help overcome this issue, try to have the following code pasted into your custom-functions.php
file –
/* Description: Fix issues when shortcodes are embedded in a block of content that is filtered by wpautop. */ function shortcode_empty_paragraph_fix($content) { $replace = array( '' => '', '[' => '[', ']
' => ']', ']
' => ']', "
\r[" => "\r[", "
\r\n[" => "\r\n[", "
\n[" => "\n[" ); $content = strtr($content, $replace); return $content; } add_filter('the_content', 'shortcode_empty_paragraph_fix');
.
Hope this helps.