>
Download This Plugin | |
Download Elegant Themes | |
Name | Geo Data Store |
Version | 2.0.3 |
Author | Scott Cariss |
Rating | 90 |
Last updated | 2013-01-11 12:37:00 |
Downloads |
1112
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
Geo Data Store plugin added 27 bytes of resources to the Home page and 21 bytes of resources to the sample Post page.
Geo Data Store plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Geo Data Store plugins ads the following DB table(s) to your Wordpress blog database:Table name | Table size (in bytes) |
---|---|
wp_geodatastore | 1024 |
This plugin is meant to be used by other developers and to be used together with themes and other plugins. Many themes and plugins use WordPress meta data table to store longitude and latitude co-ordinates for posts. While this works fine the meta data table cannot be indexed very well. Let's take for example you have made a custom post type called 'properties'. You create 100,000 posts all attached with latitude and longitude co-ordinates. You want your users to search for those properties in a 50 mile radius for example. Because of the method of which WordPress stores the meta data the query is slow especially when dealing with large amounts of data.
This plugin has been made to retro fit your current WordPress install. You as the developer select, using filters, what meta data you want to start capturing and this plugin will put the data in a table better optimized for storing latitude and longitude co-ordinates. Upon plugin activate existing data will be index and any data from then on.
Usage:
Before activating set what meta keys you want this plugin to capture by using the filter 'sc_geodatastore_meta_keys'. Your latitude and longitude values have to be stored in a single meta field like: 51.507334,-0.127682
Example usage of the filter:
add_filter( 'sc_geodatastore_meta_keys', 'homes_for_sale_geodata' );
function homes_for_sale_geodata( $keys )
{
$keys[] = "properties_address_coords";
return $keys;
}
Notice: This plugin is currently limited to only allowing one pair of co-ordinates per post. Maybe in a later version I will allow multiple pairs per post, but since this plugin was made to serve my purpose and it serves it well I see no reason to build upon it yet.