Geo-enabling Wordpress
Made a couple of changes to the RSS 2.0 and Atom feeds for the website to meet geotagging standards. Especially for the RSS feed, which only had a single location for the entire site, not for each entry.
In the wp-atom.php file I modified:
<feed version="0.3" xmlns="http://purl.org/atom/ns#"
and
<geo:latitude><?php echo get_Lat(); ?></geo:latitude>
<geo:longitude><?php echo get_Lon(); ?></geo:longitude>
within the <entry></entry> section. For RSS you just need to move the icbm tags down into the <item> section.
My name is