Description for URL in Google Sitemap -
is possible specify description url-element in google sitemaps?
example (see description-tag):
<url> <loc>http://www.example.com/dogs</loc> <description>this page dogs, can find new products dogs here.</description> <changefreq>hourly</changefreq> <priority>1.00</priority> <image:image> <image:loc>http://www.example.com/image.jpg</image:loc> </image:image> </url> <url> <loc>http://www.example.com/cats</loc> <description>this page cats, can find new products cats here.</description> <changefreq>hourly</changefreq> <priority>1.00</priority> <image:image> <image:loc>http://www.example.com/image.jpg</image:loc> </image:image> </url> thank you!
second support of google sitemaps can submit rss or atom file (a xml) sitemap.
in rss or atom file can put description url. can read especification of rss
an exemple:
<?xml version="1.0" encoding="utf-8" ?> <rss version="2.0"> <channel> <title>rss title</title> <description>this example of rss feed</description> <link>http://www.someexamplerssdomain.com/main.html</link> <lastbuilddate>mon, 06 sep 2010 00:01:00 +0000 </lastbuilddate> <pubdate>mon, 06 sep 2009 16:45:00 +0000 </pubdate> <ttl>1800</ttl> <item> <title>example entry</title> <description>here text containing interesting description.</description> <link>http://www.wikipedia.org/</link> <guid>unique string per item</guid> <pubdate>mon, 06 sep 2009 16:45:00 +0000 </pubdate> </item> </channel> </rss>
Comments
Post a Comment