Take a look at freegeoip.net. I used it like this with jquery, for example.
$.get( "http://freegeoip.net/json/", 'jsonp', function( data ) {
country = data['country_code'];
if( country == 'US' ){
// show your content
};
});
Related Posts:
- IP address character limit
- WP_Query with “post_title LIKE ‘something%'”?
- How to extend WP_Query to include custom table in query?
- Can wp_query return posts meta in a single request?
- compare meta_query in get_posts arguments
- How to use the_posts_navigation for wp_query and get_posts?
- How to do a wp_query using “BETWEEN” with two meta_values?
- How to paginate attachments in a secondary query as gallery?
- How do I order pages and categories by ID or name in the same query?
- How to do a query only on a specific admin page?
- WP Cron and wp_insert_post
- How to adjust found_posts so that it accounts for offset and pagination
- SQL query equivalent to WP User Query
- Function to check if author has posted within the last x days
- Single page theme that uses pages for the content
- Show default content if custom WP_Query has no posts
- WP Query for Posts (Products) in Specific Category that has 2 Specific Tags (*AND* both tags not *OR*)
- meta_query on a date range using an array of values
- Pagination for custom query on single.php
- wp_transients | wp_object_cache VS SESSIONS & Cookies?
- How to hide post content/meta from everyone except the post author and admin
- Get product list of given category
- Remove ellipsis from the excerpt retrieved using get_the_excerpt()
- WordPress query vars are not added
- When querying a combination of posts and other meta fields, is there a better solution than directly modifying the WHERE value?
- Mysql query LIKE not working
- Meta box dropdown of custom posts
- Query: offset post list, unless it’s a specific category
- Multiple taxonomy And acf filter group by
- WP_Query Not Recognizing Taxonomy Parameter in Custom Search
- Sorting events by descending date, and ascending time if multiple events on a date
- WP_Query orderby author__in
- Take all produts by category
- querying data via $wpdb and get_row
- Combining categories (Query posts with multiple taxonomy terms)
- Filtering out child category posts from parent category archive not working
- Custom Query include private posts in pagination count calculations?
- wp_update_post not working
- WP_Query with offset and ‘orderby’ => ‘rand’, offset not working
- WP_Query Limit Data_Query last 90 days
- How to retrieve the date on which a post was moved to trash?
- wp_query with parameters
- Sort WordPress Posts Meta value by Week not Day
- WP_Query arguments order
- Best choice for multiple loop in page?
- wp_query get data from advanced custom field in wordpress
- How to create custom query by keyword in post title?
- Get Child Category only
- Order is breaking wp_query
- How to display all posts not in a post_format
- How to filter query loop block with a search string from the query parameters
- WP_Query – How to get all posts of specific days of week by custom field date?
- How can I comment comma-separated array values?
- WP_Query returns no posts for category
- Querying a large number of posts including their custom fields data
- Group posts by attachment meta key
- Orderby two meta fields not working
- Post__not_in only removing first 2 pages
- Query posts by searching for a string in a meta field
- Added Date Filter To Popular Posts Query
- WP_Query with 2 genres
- Display posts from an array of ID’s
- Date not appearing in custom query
- How can I build a query that returns all attachments of a page and it’s children pages?
- Query ACF relationship field – Comparator IN – Value array
- Use get_cat_ID to retreive multiple category IDs
- How can I modify the query by adding to the existing query?
- Duplice post with standard WP loop – fixed by using query_posts() instead
- WP_Query Regexp whitespace and end of string
- Custom order of posts in wp_query and different taxonomies
- WP_Query paginate with one term per page?
- Update wp_query every week
- Filtering WP_Query based on wp_postmeta keys values
- using custom meta user data to run queries in WordPress
- Look for string in posts and postmeta
- Multiple meta_query not working
- Save query in function for custom gallery
- Merge two queries and remove duplicate
- Convert SQL Query to WP_Query
- WordPress wp_query add custom query as field
- Get a page ancestor from a most viewed list
- What argument does my function need to echo get_results() query results
- 3 wp_query on one page with pagination for last query
- Custom pagination (Title, date and teaser)
- Using custom field as ‘orderby’ value causing post grouping by publish date
- Sorting Posts with meta value not working
- Display posts from catagories
- Fire query on ajax post url page
- What is wrong with this pagination code?
- Read more redirection problem
- Multiple loops on index page with sticky post and pagination
- Randomly display posts on a site hosted by WPEngine? [closed]
- tax_query not working properly with get_posts
- how to add limit records in wordpress query
- query only direct child and sub-terms of a current term archive
- Get access to all terms associated to each post that the wp_query loop displays
- WP_Query by meta key not returning any posts
- How do I subquery with custom meta fields?
- Show number of posts AND number on current page (cannot make it work)
- Advanced Search – Is this possible?