Skip to content

Instantly share code, notes, and snippets.

@lkoudal
Forked from yratof/functions.php
Created June 5, 2016 19:31
Show Gist options
  • Select an option

  • Save lkoudal/e6beb33b38cdf1a310d3c30eeca2963e to your computer and use it in GitHub Desktop.

Select an option

Save lkoudal/e6beb33b38cdf1a310d3c30eeca2963e to your computer and use it in GitHub Desktop.
Visual Composer and Relevanssi showing shortcodes in search
<?php
// Issue with showing VC shortcodes in search results
// Strip out Visual Composer specific shortcodes
add_filter('relevanssi_pre_excerpt_content', 'rlv_trim_vc_shortcodes');
function rlv_trim_vc_shortcodes($content) {
$content = preg_replace('/\[\/?vc_.*?\]/', '', $content);
return $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment