Skip to content

Kirby 4.1.2

$kirby->root('plugins')

Returns the root of the plugins folder.

Example

<?= $kirby->root('plugins') ?>

Custom setup

If you want to overwrite the root you can do this in your index.php by passing a custom roots setup to the Kirby constructor.

/index.php
<?php

include 'kirby/bootstrap.php';

$kirby = new Kirby([
    'roots' => [
        'plugins' => '/absolute/path/to/custom/root',
    ],
]);

echo $kirby->render();