Forums
(@fredbsc)
11 years, 7 months ago
Solved. In my functions.php->better_trim_excerpts() I added one line:
$text = get_the_content(''); --->>> $text = preg_replace("~(?:\[/?)[^/\]]+/?\]~s", '', $text); $text = strip_shortcodes( $text );
Seems to work for me. Manfred