W
by fyaconiello
5 (1 reviews)
WP GeoPosts
A simple Wordpress plugin for adding geographic data to posts.
Tested up to WP 3.4.2 (Current: 6.9.4)
v1.0
Current Version v1.0
Updated 13 years ago
Last Update on 21 Aug, 2012
Refreshed 6 hours ago
Last Refreshed on
Rank
#22,605
-161 this week
Active Installs
40+
—
No change
KW Avg Position
115.5
—
No change
Downloads
2.8K
+1 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(1 reviews)
Next Milestone 50
40+
50+
1,692
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 5 more installs to reach 50+
Rank Changes
Current
#22,605
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
5.0
1 reviews
Overall
100%
5
1
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 2 of 2| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| distance search | 78 | — | Tag | 10 hours ago |
| distance | 153 | — | Tag | 10 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.0
- Last Updated
- Aug 21, 2012
- Requires WP
- 3.0+
- Tested Up To
- 3.4.2
- PHP Version
- N/A
- Author
- fyaconiello
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 1
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,719
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#956
Nginx Helper
100K+ installs
#289
Custom Permalinks
100K+ installs
#406
Advanced Ads – Ad Manager & AdSense
100K+ installs
#414
Frequently Asked Questions
Common questions about WP GeoPosts
For every post type selected on the plugin settings page. That type's add/edit screens will have an additional metabox automatically added. Metadata that is added to each record: Location via wp_gp_location Latitude via wp_gp_latitude Longitude via wp_gp_longitude
Make a geo-aware query against the posts table. WP_GeoQuery accepts all arguments that WP_Query takes. latitude and longitude are optional parameters. If passed, distance is calculated and returned with each result. In addition to the regular fields, each result returns latitude, longitude, and location. <?php $query = new WP_GeoQuery(array( 'latitude' => '37.5160', // User's Latitude (optional) 'longitude' => '-77.5005', // User's Longitude (optional) 'posts_per_page' => 25, // Any regular options available via WP_Query )); foreach($query->posts as $post) { echo " {$post->post_title}<br />\n"; // returned only if latitude and longitude are passed into WP_GeoQuery echo " {$post->distance}<br />\n"; // Always returned by WP_GeoQuery echo " {$post->location}<br />\n"; echo " {$post->latitude}<br />\n"; echo " {$post->longitude}<br />\n"; echo "<br />\n"; } ?>