@TeeJay
To list all your NM posts somewhere in your template you could do like this:
that is, if you want to include this in a site map, not in the Sitemap (sitemap.xml)...
To list all your NM posts somewhere in your template you could do like this:
PHP Code:
<?php
global $NMRECENTPOSTS;
$tmprecent = $NMRECENTPOSTS;
$NMRECENTPOSTS = 99999;
nm_list_recent();
$NMRECENTPOSTS = $tmprecent;
?>
that is, if you want to include this in a site map, not in the Sitemap (sitemap.xml)...