$pages->merge()
Include all given items in the collection
$pages->merge(mixed $args = null): Kirby\Cms\Pages
Parameters
Name | Type | Default |
---|---|---|
$args | mixed |
null |
Return type
This method does not modify the existing $pages
object but returns a new object with the changes applied. Learn more →
Parent class
Example:
<?php
$collection1 = page('exhibitions')->children()->listed();
$collection2 = page('news')->children()->listed();
$newCollection = $collection1->merge($collection2);
?>