Name |
Type |
Default |
Description |
$query |
string |
null |
|
$params |
array |
[ ] |
|
Kirby\Cms\Pages
Option |
Default |
Description |
minlength |
2 |
Minimum length of search word |
fields |
[] |
Fields to search in, defaults to all fields |
words |
false |
Search full words only |
score |
['id' => 64,'title' => 64] |
Score per field |
stopwords |
[] |
Array of words to exclude from search |
// search all pages and descendants
$results = $pages->search('my awesome search');
// filter the search results
$results = $pages->search('my awesome search')->listed()->filterBy('template', 'article');
// add pagination to the search results
$results = $pages->search('my awesome search')->paginate(20);
// search in certain fields only
$results = $pages->search('my awesome search', 'title|text');
// search for full words only
$results = $pages->search('my awesome->search', ['words' => true, 'minlength' => 4]);
// feed the search with a get parameter -> http://yourdomain.com/?q=awesome
$results = $pages->search(get('q'));
Kirby\Cms\Collection
kirby/src/Cms/Collection.php#L321