hook_xmlsitemap_links($type = NULL, $excludes = array())hook_xmlsitemap_links()Retrieve a array of links to include in the sitemap.
An array of link arrays with the following keys and values:
contributions/xmlsitemap/xmlsitemap.api.php, line 29
<?php
function hook_xmlsitemap_links() {
$links = array();
$links[] = array(
'type' => 'mymodule',
'id' => 1,
'loc' => 'mymodule/menu/path',
'lastmod' => 346245692,
'changefreq' => 4600,
);
return $links;
}
?>