Title: Require Post Category
Author: Josh Hartman
Published: <strong>2011년 2월 14일</strong>
Last modified: 2024년 4월 5일

---

플러그인 검색

![](https://ps.w.org/require-post-category/assets/banner-772x250.png?rev=1603108)

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

![](https://ps.w.org/require-post-category/assets/icon-256x256.png?rev=1603108)

# Require Post Category

 작성자: [Josh Hartman](https://profiles.wordpress.org/joshhartman/)

[다운로드](https://downloads.wordpress.org/plugin/require-post-category.2.1.zip)

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

 [지원](https://wordpress.org/support/plugin/require-post-category/)

## 설명

Tired of uncategorized posts? Use this simple plugin to require users to choose 
a post category before updating or publishing a post. By default this only applies
to normal posts. If you wish to require a category/taxonomy for a custom post type
see the FAQ for filter hook usage examples.

#### 번역

 * French (fr_FR) – Dominique V.
 * Spanish (es_ES) – [Andrew Kurtis – WebHostingHub](http://www.webhostinghub.com)
 * Polish (pl_PL) – Michał Papliński
 * Finnish (fi) – Sanapaino

If you have created your own language pack, or have an update of an existing one,
you can send the [PO and MO files](https://codex.wordpress.org/Translating_WordPress)
to [me](https://www.warpconduit.net/contact) so that I can bundle it into the plugin.
[Download the latest POT file](https://plugins.svn.wordpress.org/require-post-category/trunk/languages/require-post-category.pot).

## 스크린샷

[⌊Notice appears when editing a post without selecting a category (Gutenberg)⌉⌊Notice
appears when editing a post without selecting a category (Gutenberg)⌉[

Notice appears when editing a post without selecting a category (Gutenberg)

[⌊Alert appears when you try to save a post without selecting a category (Classic)⌉⌊
Alert appears when you try to save a post without selecting a category (Classic)⌉[

Alert appears when you try to save a post without selecting a category (Classic)

## 설치

#### From your WordPress dashboard

 1. Visit ‘Plugins > Add New’
 2. Search for ‘require post category’ and click the Install button
 3. Activate Require Post Category from your Plugins page.

#### From WordPress.org

 1. Download Require Post Category.
 2. Upload the ‘require-post-category’ directory to your ‘/wp-content/plugins/’ directory,
    using your favorite method (ftp, sftp, scp, etc…)
 3. Activate Require Post Category from your Plugins page.

## FAQ

### Are there any settings I can adjust?

Nope, just install and activate, that’s it!

### How do I use this for custom post types and/or custom taxonomies?

Use the `rpc_post_types` filter hook in your theme’s `functions.php` or a must-use
plugin.

Usage examples:

    ```
    function custom_rpc_post_types( $post_types ) {
        // Add a key to the $post_types array for each post type and list the slugs of the taxonomies you wish to require

        // Simplest usage
        $post_types['book'] = array( 'genre' );

        // Multiple taxonomies
        $post_types['recipe'] = array( 'cookbook_category', 'geographic_origin', 'flavor_tags' );

        // Set your own alert message for each taxonomy, or let the plugin generate the alert message
        $post_types['inventory'] = array(
            // Let the plugin generate a relevant alert message
            'manufacturer',
            // Or specify a custom alert message
            'inventory_category' => array(
                'message' => "Please choose a category for this fine inventory item."
            )
        );

        // Always return $post_types after your modifications
        return $post_types;
    }

    add_filter( 'rpc_post_types', 'custom_rpc_post_types' );
    ```

The default `$post_types` contains the following:

    ```
    $post_types['post'] = array(
        'category' => array(
            'message' => 'Please select a category before publishing this post.'
        )
    );
    ```

This maintains the plugin’s original functionality. However, you can remove this
functionality with `unset($post_types['post']);` or by redefining `$post_types` 
in your hook function.

### You’ve added code to require a custom taxonomy but can’t get it to work in the Gutenberg editor?

One reason may be that your custom taxonomy does not have the `show_in_rest` argument
enabled. Without it enabled the Gutenberg editor cannot access it.

### Have a question that is not addressed here?

Visit this plugin’s WordPress support forum at https://wordpress.org/support/plugin/
require-post-category

## 후기

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

### 󠀁[Easy and Effective](https://wordpress.org/support/topic/easy-and-effective-194/)󠁿

 [Daniel Hendricks](https://profiles.wordpress.org/hendridm/) 2020년 5월 12일

Simply install the plugin and activate. Works with both classic and block editors.
Nice work.

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

### 󠀁[Works perfectly with no fuss](https://wordpress.org/support/topic/works-perfectly-with-no-fuss/)󠁿

 [wpguillaume](https://profiles.wordpress.org/wpguillaume/) 2020년 2월 10일

And now with Gutenberg support. 🙂 No settings needed, install, activate, enjoy.
Thank you!

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

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

 [Sanapaino](https://profiles.wordpress.org/sanapaino/) 2020년 2월 6일

A plugin as a plugin should be: simple but useful.

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

### 󠀁[excellent plugin](https://wordpress.org/support/topic/excellent-plugin-5530/)󠁿

 [Groovyx9](https://profiles.wordpress.org/groovyx9/) 2020년 2월 4일

I was so glad to have found this plugin a few years ago : as each post on my site
is right away transformed into a newsletter according to categories, forgetting 
to add a category means a painful process of deleting and creating again. This plugin
is just perfect to avoid such a situation… and now I can see it is updated 🙂 So
5 stars.

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

### 󠀁[works with cpt!](https://wordpress.org/support/topic/works-with-cpt/)󠁿

 [nsultan](https://profiles.wordpress.org/nsultan/) 2019년 6월 16일

perfect!

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

### 󠀁[Works!](https://wordpress.org/support/topic/works-1431/)󠁿

 [seobootuz](https://profiles.wordpress.org/seobootuz/) 2018년 6월 17일

Using for custom post type with custom taxonomy. Great plugin.

 [ 모든 11 평가 읽기 ](https://wordpress.org/support/plugin/require-post-category/reviews/)

## 기여자 & 개발자

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

기여자

 *   [ Josh Hartman ](https://profiles.wordpress.org/joshhartman/)

“Require Post Category”(이)가 1 개 언어로 번역되었습니다. 기여해 주셔서 [번역자](https://translate.wordpress.org/projects/wp-plugins/require-post-category/contributors)
님께 감사드립니다.

[자국어로 “Require Post Category”(을)를 번역하세요.](https://translate.wordpress.org/projects/wp-plugins/require-post-category)

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

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

## 변경이력

#### 2.1

 * Updated for WordPress 5.5
 * FIXED: Deprecated function notice listed in jQuery Migrate Helper plugin (Classic
   Editor)
 * FIXED: Submitting post form by pressing enter in the title field would bypass
   checks (Classic Editor)

#### 2.0.3

 * Added Finnish (fi) translation by Sanapaino

#### 2.0.2

 * FIXED: Custom taxonomy `rest_base` value of boolean false was not being properly
   handled.

#### 2.0.1

 * Repaired translation files.

#### 2.0

 * Rewritten for the new Gutenberg editor (first introduced in WordPress 5.0)

#### 1.1

 * NEW: Added a filter hook and related code to allow developers to easily add support
   for custom post types and custom taxonomies
 * Updated to meet WordPress PHP coding standards

#### 1.0.7

 * Moved JavaScript to separate file and updated to use `wp_enqueue_script` and `
   wp_localize_script`

#### 1.0.6

 * Added French (fr_FR) translation by Dominique V.

#### 1.0.5

 * Added Polish (pl_PL) translation by Michał P.

#### 1.0.4

 * Added Spanish (es_ES) translation by Andrew K.

#### 1.0.3

 * Added i18n support

#### 1.0.2

 * Updated for WordPress 3.6

#### 1.0.1

 * FIXED: Disabled script when adding/editing pages

#### 1.0

 * First stable release

## 기초

 *  버전 **2.1**
 *  최근 업데이트: **2년 전**
 *  활성화된 설치 **1,000+**
 *  워드프레스 버전 ** 5.5 또는 그 이상 **
 *  다음까지 시험됨: **6.5.8**
 *  언어
 * [English (US)](https://wordpress.org/plugins/require-post-category/) 및 [Swedish](https://sv.wordpress.org/plugins/require-post-category/).
 *  [자국어로 번역하기](https://translate.wordpress.org/projects/wp-plugins/require-post-category)
 * 태그:
 * [category](https://ko.wordpress.org/plugins/tags/category/)[post](https://ko.wordpress.org/plugins/tags/post/)
   [require](https://ko.wordpress.org/plugins/tags/require/)[tags](https://ko.wordpress.org/plugins/tags/tags/)
   [taxonomy](https://ko.wordpress.org/plugins/tags/taxonomy/)
 *  [고급 보기](https://ko.wordpress.org/plugins/require-post-category/advanced/)

## 평점

 별 5점 만점에 4.9점.

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

[Your review](https://wordpress.org/support/plugin/require-post-category/reviews/#new-post)

[모든  리뷰 보기](https://wordpress.org/support/plugin/require-post-category/reviews/)

## 기여자

 *   [ Josh Hartman ](https://profiles.wordpress.org/joshhartman/)

## 지원

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

 [지원 포럼 보기](https://wordpress.org/support/plugin/require-post-category/)