blankogmbh/kirby-sitemap

This package is abandoned and no longer maintained. The author suggests using the omz13/kirby3-xmlsitemap package instead.
There is no license information available for the latest version (v1.4.1) of this package.

Installs: 671

Dependents: 0

Suggesters: 0

Security: 0

Stars: 10

Watchers: 3

Forks: 1

Type:kirby-plugin

v1.4.1 2018-01-24 14:13 UTC

This package is auto-updated.

Last update: 2020-05-24 09:21:04 UTC


README

This plugin generates a sitemap.xml from all pages in Kirby. It's possible to exclude pages from the sitemap and to assign which pages should have the highest priority (1). The priority can be disabled for all pages otherwise pages are prioritized automaticaly by depth.

Installation

Composer

composer require blankogmbh/kirby-sitemap

Kirby CLI

kirby plugin:install blankogmbh/kirby-sitemap

Git

Check out this repository to to /site/plugins/ or include it as a submodule git submodule add https://github.com/blankogmbh/kirby-sitemap.git site/plugins/kirby-sitemap.

Usage

You can preview your sitemap by browsing to http://your-fancy-kirby-site.net/sitemap.xml.

The plugin can be configured via Kirby’s config.php.

Exclude Pages From the Sitemap

c::set('sitemap.exclude', [
    'error', // just the page error
    'example*', // exclude all pages starting with example
    'example/*', // exclude only subpages of example (but include example)
]);

Exclude hidden Pages

c::set('sitemap.excludeHiddenPages', true);

Include hidden pages on root level

If you set sitemap.excludeHiddenPages to true, but want the hidden root pages to be included

c::set('sitemap.includeHiddenRootPages', true);

Prioritize Pages

c::set('sitemap.priority', [
    'contact', // just the page contact
    'important*', // all pages starting with important
    'important/*', // all subpages of important (but not important)
]);

c::set('sitemap.priority', false); // disable prioritization

Ping Google on page create, delete, sort, hide, move

c::set('sitemap.pingGoogle', true);

Change route pattern

c::set('sitemap.route.pattern', 'sitemap-xml');

Author

Markus Denhoff / Blanko denhoff@blanko.de

Inspired by Thomas Ghysels sitemap plugin.