SearchWP

searchwp\parser\richtext

Since: 4.0.0

Table of Contents

Utilize an external rich text parser to extract rich text content instead of SearchWP’s.

Parameters

Type Parameter Default Since
String $content '' 4.0.0
Array $args
Key Type Value
file String Path to file
data Array Data associated with the file
4.0.0

Examples

All hooks should be added to your custom SearchWP Customizations Plugin.

Use a custom rich text file parser to extract content

<?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 );

How to use this code