<?php
/*
Plugin Name: Geo Map to end of Post
Plugin URI: http://everyaustralia.com/map-of-photos/
Description: Adds a Map to the end of each Post showing the location per the Geo Mashup Plugin.
Version: 1.00
Author: Gary Eckstein
Author URI: http://eckstein.id.au
License: GPL version 3
*/
add_filter('the_content','end_post_content');
function end_post_content($content) {
if (is_single()){
$content=$content.GeoMashup::map();
}
return $content;
}
?>