Replies: 2
IMO should 😉
I fixed it locally so as:
Original:
...
$content = ( has_excerpt( get_the_ID() ) ) ? get_the_excerpt() : get_the_content();
?>
<p><?php echo wp_trim_words( $content, get_theme_mod( 'woa_sf_blog_excerpt_word_count', 55 ), get_theme_mod( 'woa_sf_blog_excerpt_end', '…' ) ); ?></p>
...
New:
...
$content = do_shortcode( ( has_excerpt( get_the_ID() ) ) ? get_the_excerpt() : get_the_content() );
$content = wp_trim_words( $content, get_theme_mod( 'woa_sf_blog_excerpt_word_count', 55 ), get_theme_mod( 'woa_sf_blog_excerpt_end', '…' ) );
$content = apply_filters('the_excerpt', $content);
?>
<p><?php echo $content ?></p>
...
Now is perfect 🙂