searchwp\source\post\attributes\content
Since: 4.0.0
Table of Contents
Customize post content prior to it being indexed.
Parameters
Type | Parameter | Default | Since | ||||||
---|---|---|---|---|---|---|---|---|---|
String | $content |
Post content to be indexed | 4.0.0 |
||||||
Array |
$args
|
4.0.0 |
Examples
All hooks should be added to your custom SearchWP Customizations Plugin.
Add additional content to post during indexing
<?php | |
// Add additional content to post during indexing in SearchWP. | |
add_filter( 'searchwp\source\post\attributes\content', function( $content, $args ) { | |
if ( 48 !== $args['post']->ID ) { | |
return $content; | |
} | |
// Add 'coffee" to the content for Page 48 so it can be searched. | |
$content .= ' coffee'; | |
return $content; | |
}, 20, 2 ); |