function xmlsitemap_custom_xmlsitemap_link_info in XML sitemap 2.x
Same name and namespace in other branches
- 8 xmlsitemap_custom/xmlsitemap_custom.module \xmlsitemap_custom_xmlsitemap_link_info()
- 6.2 xmlsitemap_custom/xmlsitemap_custom.module \xmlsitemap_custom_xmlsitemap_link_info()
- 7.2 xmlsitemap_custom/xmlsitemap_custom.module \xmlsitemap_custom_xmlsitemap_link_info()
Implements hook_xmlsitemap_link_info().
File
- xmlsitemap_custom/
xmlsitemap_custom.module, line 11 - Adds user configurable links to the XML sitemap.
Code
function xmlsitemap_custom_xmlsitemap_link_info() {
return [
'custom' => [
'label' => t('Custom links'),
],
];
}