searchwp\document\pdf_metadata\skip
Da: 4.0.0
Indice
Se i metadati PDF debbano essere saltati durante l'indicizzazione.
Parametri
| Tipo | Parametro | Predefinito | Da |
|---|---|---|---|
| Booleano | $skip |
false |
4.0.0 |
| \WP_Post | $the_post |
Indicizzazione allegato in corso | 4.0.0 |
Esempi
Tutti gli hook dovrebbero essere aggiunti al tuo plugin personalizzato SearchWP Customizations Plugin.
Disabilita l'indicizzazione dei metadati PDF per un PDF specifico
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 ); |
