Title: Geo Targeted Posts
Author: karolisg
Published: <strong>2014년 11월 18일</strong>
Last modified: 2017년 1월 12일

---

플러그인 검색

이 플러그인은 **최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다**. 워드프레스의
좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 
있을 수 있습니다.

![](https://s.w.org/plugins/geopattern-icon/geo-targeted-posts.svg)

# Geo Targeted Posts

 작성자: [karolisg](https://profiles.wordpress.org/karolisg/)

[다운로드](https://downloads.wordpress.org/plugin/geo-targeted-posts.0.8.3.zip)

 * [세부사항](https://ko.wordpress.org/plugins/geo-targeted-posts/#description)
 * [평가](https://ko.wordpress.org/plugins/geo-targeted-posts/#reviews)
 *  [설치](https://ko.wordpress.org/plugins/geo-targeted-posts/#installation)
 * [개발](https://ko.wordpress.org/plugins/geo-targeted-posts/#developers)

 [지원](https://wordpress.org/support/plugin/geo-targeted-posts/)

## 설명

This plugin adds an option to choose which countries are allowed to see the post.

Based on Geo Location user will or will not see the post in list pages. If restricted
post is accessed directly then a 404 error page is returned.

Features:

 * Ability to choose multiple countries from dropdown list manualy for each post
 * Ability to write/paste in the list of country codes (eg. de,gb,fi,lt)
 * Post, page, custom post types support
 * CSV import plugins support
 * Translation ready, WPML support
 * Simulate admin location
 * Controll whether to display all posts to logged in users, to admins only or filter
   posts for logged in users as per default
 * Clear the list of set countries for post with one click
 * Supports quick and bulk edit boxes in post list

The Plugin uses Maxmind’s GeoIP API.

Currently supported countries are:
 Andorra, United Arab Emirates, Afghanistan, 
Antigua and Barbuda, Anguilla, Albania, Armenia, Angola, Asia/Pacific Region, Antarctica,
Argentina, American Samoa, Austria, Australia, Aruba, Aland Islands, Azerbaijan,
Bosnia and Herzegovina, Barbados, Bangladesh, Belgium, Burkina Faso, Bulgaria, Bahrain,
Burundi, Benin, Saint Bartelemey, Bermuda, Brunei Darussalam, Bolivia, Bonaire, 
Saint Eustatius and Saba, Brazil, Bahamas, Bhutan, Bouvet Island, Botswana, Belarus,
Belize, Canada, Cocos (Keeling) Islands, Central African Republic, Congo, Switzerland,
Cote d’Ivoire, Cook Islands, Chile, Cameroon, China, Colombia, Costa Rica, Cuba,
Cape Verde, Curacao, Christmas Island, Cyprus, Czech Republic, Germany, Djibouti,
Denmark, Dominica, Dominican Republic, Algeria, Ecuador, Estonia, Egypt, Western
Sahara, Eritrea, Spain, Ethiopia, Europe, Finland, Fiji, Falkland Islands (Malvinas),
Micronesia, Federated States of, Faroe Islands, France, Gabon, United Kingdom, Grenada,
Georgia, French Guiana, Guernsey, Ghana, Gibraltar, Greenland, Gambia, Guinea, Guadeloupe,
Equatorial Guinea, Greece, South Georgia and the South Sandwich Islands, Guatemala,
Guam, Guinea-Bissau, Guyana, Hong Kong, Heard Island and McDonald Islands, Honduras,
Croatia, Haiti, Hungary, Indonesia, Ireland, Israel, Isle of Man, India, British
Indian Ocean Territory, Iraq, Iran, Islamic Republic of, Iceland, Italy, Jersey,
Jamaica, Jordan, Japan, Kenya, Kyrgyzstan, Cambodia, Kiribati, Comoros, Saint Kitts
and Nevis, Korea, Democratic People’s Republic of, Korea, Republic of, Kuwait, Cayman
Islands, Kazakhstan, Lao People’s Democratic Republic, Lebanon, Saint Lucia, Liechtenstein,
Sri Lanka, Liberia, Lesotho, Lithuania, Luxembourg, Latvia, Libyan Arab Jamahiriya,
Morocco, Monaco, Moldova, Montenegro, Saint Martin, Madagascar, Marshall Islands,
Macedonia, Mali, Myanmar, Mongolia, Macao, Northern Mariana Islands, Martinique,
Mauritania, Montserrat, Malta, Mauritius, Maldives, Malawi, Mexico, Malaysia, Mozambique,
Namibia, New Caledonia, Niger, Norfolk Island, Nigeria, Nicaragua, Netherlands, 
Norway, Nepal, Nauru, Niue, New Zealand, Oman, Panama, Peru, French Polynesia, Papua
New Guinea, Philippines, Pakistan, Poland, Saint Pierre and Miquelon, Pitcairn, 
Puerto Rico, Palestinian Territory, Portugal, Palau, Paraguay, Qatar, Reunion, Romania,
Serbia, Russian Federation, Rwanda, Saudi Arabia, Solomon Islands, Seychelles, Sudan,
Sweden, Singapore, Saint Helena, Slovenia, Svalbard and Jan Mayen, Slovakia, Sierra
Leone, San Marino, Senegal, Somalia, Suriname, South Sudan, Sao Tome and Principe,
El Salvador, Sint Maarten, Syrian Arab Republic, Swaziland, Turks and Caicos Islands,
Chad, French Southern Territories, Togo, Thailand, Tajikistan, Tokelau, Timor-Leste,
Turkmenistan, Tunisia, Tonga, Turkey, Trinidad and Tobago, Tuvalu, Taiwan, Tanzania,
Ukraine, Uganda, United States Minor Outlying Islands, United States, Uruguay, Uzbekistan,
Holy See (Vatican City State), Saint Vincent and the Grenadines, Venezuela, Virgin
Islands, British, Virgin Islands, U.S., Vietnam, Vanuatu, Wallis and Futuna, Samoa,
Yemen, Mayotte, South Africa, Zambia, Zimbabwe

## 설치

 1. Upload `geo-targeted-posts` directory to the `/wp-content/plugins/`
 2. Activate the plugin through the ‘Plugins’ menu in WordPress
 3. Go to Post and in Publish section you will see New item where you can specified
    in wich countries post can be visible

## FAQ

  Where can I find the option to choose countries?

An option to choose countries is rendered above Publish button of each post in admin
section.

  Which post types are excluded by default?

By default we decided to exclude the following post types: attachment, revision,
nav_menu_item, product_variation, shop_order, shop_order_refund, shop_coupon, shop_webhook

  How can I edit the excluded post types list?

You can edit the excluded post types list by applying a **gtp_exclude_post_types**
filter. For example for some reason you want to remove **shop_coupon** from excluded
list you should include the following in your theme’s functions.php file:

    ```
    <?php
    add_filter('gtp_exclude_post_types', 'alter_excluded_posts_types');
    function alter_excluded_posts_types( $post_type_list ) {
        $new_post_type_list = array_diff( $post_type_list, array( 'shop_coupon' ) );
        return $new_post_type_list;
    }
    ?>
    ```

## 후기

![](https://secure.gravatar.com/avatar/0b7cefc9baa4eee41fa83ac849cf5f7ee0a6356b08f4d3dcb69b9304e404df9e?
s=60&d=retro&r=g)

### 󠀁[The Perfect Solution to filter post based on the Country visiting it](https://wordpress.org/support/topic/the-perfect-solution-to-filter-post-based-on-the-country-visiting-it/)󠁿

 [sathyasaagar](https://profiles.wordpress.org/sathyasaagar/) 2017년 8월 16일

The Perfect Solution to filter post based on the Country visiting it

![](https://secure.gravatar.com/avatar/c56d6ab8639de494a8159108bccca6f0e2ea4545f73d80cf12eaae3700f2de1c?
s=60&d=retro&r=g)

### 󠀁[Great plugin](https://wordpress.org/support/topic/great-plugin-9990/)󠁿

 [jidetwo](https://profiles.wordpress.org/jidetwo/) 2016년 9월 3일

the geo ip doesn’t work very well on firefox but it’s a great plugin nonetheless.

![](https://secure.gravatar.com/avatar/498a106e2f752bed80ca395f8c9ebf76f7be18d9bad0d57b98c90b9d4b0b45a1?
s=60&d=retro&r=g)

### 󠀁[Exclude countries?](https://wordpress.org/support/topic/exclude-countries-1/)󠁿

 [ronnykaram](https://profiles.wordpress.org/ronnykaram/) 2016년 9월 3일

The plugin works as expected; it delivers posts to selected countries. I was just
wondering if it’s possible to exclude countries instead of adding all other countries.
For example, if I want everyone to see the post except the U.S. Is this possible?

 [ 모든 4 평가 읽기 ](https://wordpress.org/support/plugin/geo-targeted-posts/reviews/)

## 기여자 & 개발자

“Geo Targeted Posts”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에
기여하였습니다.

기여자

 *   [ karolisg ](https://profiles.wordpress.org/karolisg/)
 *   [ mindaugas ](https://profiles.wordpress.org/mindaugas/)

[자국어로 “Geo Targeted Posts”(을)를 번역하세요.](https://translate.wordpress.org/projects/wp-plugins/geo-targeted-posts)

### 개발에 관심이 있으십니까?

[코드 탐색하기](https://plugins.trac.wordpress.org/browser/geo-targeted-posts/)는,
[SVN 저장소](https://plugins.svn.wordpress.org/geo-targeted-posts/)를 확인하시거나,
[개발 기록](https://plugins.trac.wordpress.org/log/geo-targeted-posts/)을 [RSS](https://plugins.trac.wordpress.org/log/geo-targeted-posts/?limit=100&mode=stop_on_copy&format=rss)
로 구독하세요.

## 변경이력

#### 0.8

 * [ADDED] Quick and bulk edit support in post list
 * [ADDED] Custom Countries column in post list
 * [ADDED] Option to choose post types where plugin is active
 * [ADDED] Simple plugin on/off button
 * [REMOVED] Annoying donate button from post edit screen

#### 0.7

 * New admin panel in Settings -> Geo Targeteed Posts
 * Ability to simulate admin location – no more proxies to see how your site looks
   in different countries!
 * Controll whether to display all posts to logged in users, to admins only or filter
   posts for logged in users as per default
 * Button to clear all set countries for post

#### 0.6.2

 * Bug fix

#### 0.6

 * Added support for CSV import plugins
 * Translation ready

#### 0.5

 * New plugin author;
 * Rewritten core of the plugin for performance;
 * OOP is now used;
 * Added ability to paste in the countries by it’s code.

#### 0.4

 * Updated activation plugin source

#### 0.3

 * Updated code for performance

#### 0.2

 * Fixed bug with pages

#### 0.1

 * Updated Country list

## 기초

 *  버전 **0.8.3**
 *  최근 업데이트: **9년 전**
 *  활성화된 설치 **20+**
 *  워드프레스 버전 ** 3.5.1 또는 그 이상 **
 *  다음까지 시험됨: **4.7.33**
 *  언어
 * [English (US)](https://wordpress.org/plugins/geo-targeted-posts/)
 * 태그:
 * [country](https://ko.wordpress.org/plugins/tags/country/)[geo post](https://ko.wordpress.org/plugins/tags/geo-post/)
   [geo tag](https://ko.wordpress.org/plugins/tags/geo-tag/)[location](https://ko.wordpress.org/plugins/tags/location/)
   [user location](https://ko.wordpress.org/plugins/tags/user-location/)
 *  [고급 보기](https://ko.wordpress.org/plugins/geo-targeted-posts/advanced/)

## 평점

 별 5점 만점에 5점.

 *  [  4/5-별점 후기     ](https://wordpress.org/support/plugin/geo-targeted-posts/reviews/?filter=5)
 *  [  0/4-별점 후기     ](https://wordpress.org/support/plugin/geo-targeted-posts/reviews/?filter=4)
 *  [  0/3-별점 후기     ](https://wordpress.org/support/plugin/geo-targeted-posts/reviews/?filter=3)
 *  [  0/2-별점 후기     ](https://wordpress.org/support/plugin/geo-targeted-posts/reviews/?filter=2)
 *  [  0/1-별점 후기     ](https://wordpress.org/support/plugin/geo-targeted-posts/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/geo-targeted-posts/reviews/#new-post)

[모든  리뷰 보기](https://wordpress.org/support/plugin/geo-targeted-posts/reviews/)

## 기여자

 *   [ karolisg ](https://profiles.wordpress.org/karolisg/)
 *   [ mindaugas ](https://profiles.wordpress.org/mindaugas/)

## 지원

할 말 있으신가요? 도움이 필요하신가요?

 [지원 포럼 보기](https://wordpress.org/support/plugin/geo-targeted-posts/)

## 기부

이 플러그인이 발전하도록 도우시겠습니까?

 [ 이 플러그인에 기부하기 ](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MWSSDWX6DMP9C)