searchwp\document\pdf_metadata\skip
Depuis : 4.0.0
Table des matières
Si les métadonnées PDF doivent être ignorées lors de l'indexation.
Paramètres
| Type | Paramètre | Défaut | Depuis |
|---|---|---|---|
| Booléen | $skip |
faux |
4.0.0 |
| \WP_Post | $the_post |
Pièce jointe en cours d'indexation | 4.0.0 |
Exemples
All hooks should be added to your custom SearchWP Customizations Plugin.
Désactiver l'indexation des métadonnées PDF pour un PDF spécifique
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 | |
| // Disable PDF metadata indexing for a specific PDF in SearchWP. | |
| add_filter( 'searchwp\document\pdf_metadata\skip', function( $skip, $the_post ) { | |
| if ( 199 === $the_post->ID ) { | |
| return true; | |
| } | |
| return $skip; | |
| }, 10, 2 ); |

