Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created March 26, 2020 17:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jchristopher/b5359c83af889ba0425d8b16e009fc94 to your computer and use it in GitHub Desktop.
Save jchristopher/b5359c83af889ba0425d8b16e009fc94 to your computer and use it in GitHub Desktop.
Use a custom rich text file parser to extract content in SearchWP
<?php
// Use a custom rich text file parser to extract content in SearchWP.
add_filter( 'searchwp\parser\text', function( $content, $data ) {
$my_parser = new \MyRichTextParser( $data['file'] );
return $my_parser->text();
}, 20, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment