ARTICLE AD BOX
My current WordPress theme has a list post style that uses the excerpts function to show 35 words
<?php echo wp_trim_words( get_the_content(), 35, '...' ); ?>
In one of my posts, has a shordcode showing that I do not want showing. I have tried all "hide shortcode" codes that I could find with an web search.
examples:
add_filter('the_excerpt', 'strip_shortcodes');
I have highlighted the shortcode that I want removed/hidden

