Skip to content

Instantly share code, notes, and snippets.

@msaari
Created July 17, 2018 03:25
Show Gist options
  • Select an option

  • Save msaari/14c7d65d4019443b956bc94e2d3f67f9 to your computer and use it in GitHub Desktop.

Select an option

Save msaari/14c7d65d4019443b956bc94e2d3f67f9 to your computer and use it in GitHub Desktop.
Relevanssi div filter
<?php
// Add this to the theme functions.php
add_filter( 'relevanssi_post_content', 'rlv_div_remove' );
function rlv_div_remove( $content ) {
$content = preg_replace( '/<div.*/s', '', $content );
return $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment