Available since: 3.0
searchwp_th_pre_process_meta_value
View Parameters »Using this hook you can pre-process Custom Field 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 Custom Field content before it is sent to SearchWP's highlighter. | |
add_filter( 'searchwp_th_pre_process_meta_value', function( $meta_value, $meta_key, $post_id ) { | |
// TODO: Customize $meta_value in any way you see fit. | |
return $meta_value; | |
}, 20, 3 ); |
Parameters
Parameter | Type | Description |
---|---|---|
$meta_value |
Mixed |
Custom field content |
$meta_key |
String |
Meta key |
$post_id |
Integer |
ID of post being processed |