searchwp\source\post\attributes\content
Seit: 4.0.0
Passen Sie den Beitrag-Inhalt an, bevor er indiziert wird.
Parameter
| Typ | Parameter | Standard | Seit | ||||||
|---|---|---|---|---|---|---|---|---|---|
| Zeichenkette | $content |
Beitragstext, der indiziert werden soll | 4.0.0 |
||||||
| Array |
$args
|
4.0.0 |
|||||||
Beispiele
All hooks should be added to your custom SearchWP Customizations Plugin.
Füge dem Beitrag während der Indizierung zusätzlichen Inhalt hinzu
This file contains hidden or 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 | |
| // 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 ); |

