Available since: 3.0
searchwp_th_pre_process_content
View Parameters »Using this hook you can pre-process content before it is sent to SearchWP’s highlighter:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Pre-process content before it is sent to SearchWP's highlighter. | |
add_filter( 'searchwp_th_pre_process_content', function( $content ) { | |
// TODO: Customize $content in any way you see fit. | |
return $content; | |
} ); |
Parameters
Parameter | Type | Description |
---|---|---|
$content |
String |
Content before its sent to the highlighter |