Skip to content

Instantly share code, notes, and snippets.

View deryckoe's full-sized avatar

Deryck Oñate Espinel deryckoe

View GitHub Profile
@deryckoe
deryckoe / wp-shortcode-cleanup.php
Last active August 29, 2015 14:07
Shortcode Garbage Markup Cleanup
public function cleanup_shortcode_fix($content) {
$array = array('<p>[' => '[', ']</p>' => ']', ']<br />' => ']', ']<br>' => ']');
$content = strtr($content, $array);
return $content;
}
add_filter('the_content', 'cleanup_shortcode_fix');