Skip to content

Kirby 4.1.2

$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

Kirby\Cms\Pages

This method does not modify the existing $pages object but returns a new object with the changes applied. Learn more →

Parent class

Kirby\Cms\Pages

Example:

<?php
$collection1 = page('exhibitions')->children()->listed();
$collection2 = page('news')->children()->listed();
$newCollection = $collection1->merge($collection2);
?>