You are here

xmlsitemap_custom.module in XML sitemap 2.x

Adds user configurable links to the XML sitemap.

File

xmlsitemap_custom/xmlsitemap_custom.module
View source
<?php

/**
 * @file
 * Adds user configurable links to the XML sitemap.
 */

/**
 * Implements hook_xmlsitemap_link_info().
 */
function xmlsitemap_custom_xmlsitemap_link_info() {
  return [
    'custom' => [
      'label' => t('Custom links'),
    ],
  ];
}