Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created March 26, 2020 17:01
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/6e6a3c37d1410cd7ce0075f395fc2f6c to your computer and use it in GitHub Desktop.
Save jchristopher/6e6a3c37d1410cd7ce0075f395fc2f6c to your computer and use it in GitHub Desktop.
Use a custom text file parser to extract content in SearchWP
<?php
// Use a custom text file parser to extract content in SearchWP.
add_filter( 'searchwp\parser\text', function( $content, $data ) {
$my_parser = new \MyTextParser( $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