Not anything really fancy but add this little bit of code to your blogcfc googlesitemap.cfm to have google also learn about your categories. The way I figure it you can never tell google too much about your site
<cfset cats = application.blog.getCategories()>
<cfoutput query=“cats”>
<url>
<loc>#application.blog.makeCategoryLink(categoryid)#</loc>
<priority>0.3</priority>
<changefreq>weekly</changefreq>
</url>
</cfoutput>
November 15th, 2007 at
9:19 PM by Damon Ledet in
Adobe, Coldfusion, SEO, Site Info | Trackback: trackback

Great! Now make me one for pages
Save me some time !! HAHAH
Thanks, great post! glad I saw it!
I do not use pages, but this would do the trick.
<cfset pages_qry = application.page.getPages() />
<cfoutput query="pages_qry">
<url>
<loc>#application.rootURL#/page.cfm/#alias#</loc>
<priority>0.3</priority>
<changefreq>weekly</changefreq>
</url>
</cfoutput>