WordPress Geo Mashup - Plugin to add Map Automatically to Posts


/ Published in: PHP
Save to your folder(s)

The awesome Geo Mashup Plugin for WordPress allows for auto-embedding a map showing the location of the Post, Page etc via Shortcode or adding a line of PHP into the Theme file/s.

The code below, added as a Plugin, will make a map appear at the end of each Post when a Post has Geo data (i.e. will automatically show on Posts when Geo data is defined in the Post).

To use:
1. Save the code below in a file called geo-map-end-post.php
2. Add the file to the /wp-content/plugins directory on your Webhost
3. Activate the new Plugin


Copy this code and paste it in your HTML
  1. <?php
  2. /*
  3. Plugin Name: Geo Map to end of Post
  4. Plugin URI: http://everyaustralia.com/map-of-photos/
  5. Description: Adds a Map to the end of each Post showing the location per the Geo Mashup Plugin.
  6. Version: 1.00
  7. Author: Gary Eckstein
  8. Author URI: http://eckstein.id.au
  9. License: GPL version 3
  10. */
  11. add_filter('the_content','end_post_content');
  12. function end_post_content($content) {
  13. if (is_single()){
  14. $content=$content.GeoMashup::map();
  15. }
  16. return $content;
  17. }
  18. ?>

URL: http://eckstein.id.au

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.