Exclude pages from search
Omschrijving
// Exclude pages from search
function exclude_pages_from_search( $query ) {
if ($query->is_search) {
$query->set('post__not_in', array(42, 54));
}
return $query;
}
add_action('pre_get_posts', 'exclude_pages_from_search');Snippet
| Field | Value |
|---|---|
| Snippet Status | Done |
| Snippet Description | Haal 1 of meer paginas uit de zoekindex van Wordpress |
| Snippet Type Code | PHP |
| Snippet URL | |
| Snippet Content | // Exclude pages from search function exclude_pages_from_search( $query ) { if ($query->is_search) { $query->set('post__not_in', array(42, 54)); } return $query; } add_action('pre_get_posts', 'exclude_pages_from_search'); |
| Snippet Content CSS | |
| Snippet Content HTML | |
| Snippet Content JS | |
| Snippet Content PHP | // Exclude pages from search function exclude_pages_from_search( $query ) { if ($query->is_search) { $query->set('post__not_in', array(42, 54)); } return $query; } add_action('pre_get_posts', 'exclude_pages_from_search'); |
| Particle Snippet in Software | 1 |
| Particle Snippet in Boilerplate | 0 |
Relations
| Item | Type |
|---|
Pointing items
| Item | Type | Category | Tags |
|---|