searchwp\post__in
Desde: 4.0.0
Tabla de contenidos
Controla un limitador global para los ID de \WP_Post que se consideran durante la indexación y la búsqueda.
Parámetros
| Tipo | Parámetro | Predeterminado | Desde |
|---|---|---|---|
| Integer[] | $ids |
[] |
4.0.0 |
Ejemplos
Todos los ganchos deben agregarse a su plugin personalizado de SearchWP Customizations Plugin.
Limitar el grupo de búsqueda a las Publicaciones sin categorizar
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 | |
| // Limit the search pool to Uncategorized Posts in SearchWP. | |
| add_filter( 'searchwp\post__in', function( $ids, $args ) { | |
| return array_unique( array_merge( $ids, get_posts( [ | |
| 'fields' => 'ids', | |
| 'nopaging' => true, | |
| 'post_type' => 'post', | |
| 'tax_query' => [ [ | |
| 'taxonomy' => 'category', | |
| 'field' => 'name', | |
| 'terms' => 'Uncategorized', | |
| ] ] | |
| ] ) ) ); | |
| }, 20, 2 ); |
