SearchWP

This Documentation is for SearchWP Version 3

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:

<?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;
} );
view raw functions.php hosted with ❤ by GitHub

Parameters

Parameter Type Description
$content String

Content before its sent to the highlighter

[wpforms id="3080"]