Home › Forums › MapPress Support › Alignment With my Theme's Columns › Reply To: Alignment With my Theme's Columns
June 25, 2012 at 9:41 am
#9723
Last question, sorry:
http://lagerlager.ch/boulderpirat/category/schwierigkeit/7c-nirvana/
I need to remove the shortcode also from the search results (see link above). I tried following:
function remove_shortcode_from_search($content) { if ( is_search() ) { $content = strip_shortcodes( $content ); } return $content; } add_filter('the_content', 'remove_shortcode_from_search');
.But it didn’t work..