searchwp\post__in
Desde: 4.0.0
Sumário
Controle um limitador global para IDs de \WP_Post que são considerados durante a indexação e a pesquisa.
Parâmetros
| Tipo | Parâmetro | Padrão | Desde |
|---|---|---|---|
| Integer[] | $ids |
[] |
4.0.0 |
Exemplos
Todos os hooks devem ser adicionados a seu plugin personalizado SearchWP Customizations Plugin.
Limite o pool de pesquisa para Posts não categorizados
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 ); |

