Theme functions.php or functions.php inside a plugin:
function remove_shortcode_from_excerpt($content) {
$content = strip_shortcodes( $content );
return $content;//always return $content
}
add_filter('the_excerpt', 'remove_shortcode_from_excerpt');
add_filter('get_the_excerpt', 'remove_shortcode_from_excerpt');
It sholud be inside Themler code at default. Excerpts are leaking many raw shortcodes. Specially caption shortcode from inserted images.
Theme functions.php or functions.php inside a plugin: function remove_shortcode_from_excerpt($content) { $content = strip_shortcodes( $content ); return $content;//always return $content } add_filter('the_excerpt', 'remove_shortcode_from_excerpt'); add_filter('get_the_excerpt', 'remove_shortcode_from_excerpt'); It sholud be inside Themler code at default. Excerpts are leaking many raw shortcodes. Specially caption shortcode from inserted images.



