Export Categories in Blogcfc Google Sitemap
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 :)
<cfoutput query="cats">
<url>
<loc>#application.blog.makeCategoryLink(categoryid)#</loc>
<priority>0.3</priority>
<changefreq>weekly</changefreq>
</url>
</cfoutput>






Thanks, great post! glad I saw it!
<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>