Skip to content

Instantly share code, notes, and snippets.

@christianseel
Created February 22, 2013 14:12
Show Gist options
  • Save christianseel/5013671 to your computer and use it in GitHub Desktop.
Save christianseel/5013671 to your computer and use it in GitHub Desktop.
GoogleSitemap Snippet: use latest publication date as date field for articles container
if ($child instanceof ArticlesContainer) {
$date = $this->modx->runSnippet('getResources',array(
'showHidden' => '1',
'parents' => $id,
'depth' => '1',
'limit' => '1',
'published' => '1',
'sortby' => '{"publishedon":"DESC"}',
'tpl' => 'getResources.publishedon'
));
}
@christianseel
Copy link
Author

add to /core/compoments/googlesitemap/model/googlesitemap/googlesitemap.class.php around line 106

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment