Title: Cutmap Editorial Workflow
Author: aswinikumar
Published: <strong>2026년 4월 27일</strong>
Last modified: 2026년 5월 2일

---

플러그인 검색

![](https://ps.w.org/cutmap-editorial-workflow/assets/banner-772x250.png?rev=3520089)

![](https://ps.w.org/cutmap-editorial-workflow/assets/icon-128x128.png?rev=3516460)

# Cutmap Editorial Workflow

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

[다운로드](https://downloads.wordpress.org/plugin/cutmap-editorial-workflow.1.4.6.zip)

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

 [지원](https://wordpress.org/support/plugin/cutmap-editorial-workflow/)

## 설명

The Cutmap Editorial Workflow (CEW) is a professional-grade content management solution
for WordPress. It is designed to bring structure, accountability, and security to
the content creation process by implementing a multi-stage editorial workflow.

Whether you are managing a small blog or a large-scale news portal, CEW ensures 
that every piece of content is reviewed and approved before it reaches your audience.

Key Features:

 * Role-Based Access Control (RBAC): Specialized user roles (Creators, Approvers)
   with restricted admin access.
 * Multi-Stage Workflow Tracking: Post lifecycle stages including Assigned, In Review,
   and Approved.
 * Centralized Assignment Dashboard: Admins can manage all active workflows and 
   assign specific Creators and Approvers to any post, page, or custom post type.
 * Content Isolation & Focus: Creators and Approvers only see the content they are
   currently assigned to, reducing clutter and preventing unauthorized edits.
 * Transparent Revision Management: Safe editing of live content via snapshots that
   only go live after approval.
 * Activity & Audit Logging: Detailed logs for tracking all workflow events.
 * Automated Notifications: Real-time email/admin alerts on task assignments and
   status updates.

## 설치

 1. Upload the `cutmap-editorial-workflow` folder to the `/wp-content/plugins/` directory.
 2. Activate the plugin through the ‘Plugins’ menu in WordPress.
 3. Use the ‘Workflows’ menu in the admin dashboard to start assigning content.

## FAQ

### Can I use this for Custom Post Types?

Yes, the Cutmap Editorial Workflow supports Posts, Pages, and all registered Custom
Post Types.

### How do I add a Creator?

The plugin automatically creates a ‘Creator’ role upon activation. You can assign
this role to any user from the WordPress ‘Users’ menu.

## 후기

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

### 󠀁[Feedback regarding bugs and issues](https://wordpress.org/support/topic/feedback-regarding-bugs-and-issues/)󠁿

 [kiyotakakiritoooo](https://profiles.wordpress.org/kiyotakakiritoooo/) 2026년 5
월 1일 답글 1개

Hello sir, Installed this plugin for just taking a look and the core workflow works
fine. creator, approver, assignments all function as expected. the approved snapshot
idea is actually very nicee sir. But found some real problems while going through
the code the plugin comes with a hardcoded password “W***f***1*3” for sample users
I am hiding it so that I don’t wanna disclose the password. anyone who reads the
source code will know it. not safe at all for a real website.the entire workflow
can be bypassed by calling the wordpress REST API directly. send a POST request 
to wp-json with status publish and it goes live without any approval. the plugin
doesnt cover this at all.when an approver rejects a post, the approved snapshot 
gets overwritten with the rejected content…. so visitors end up seeing the version
that was literally just rejected. seems like a bug.every single page load in wp-
admin triggers a full database schema check… makes the admin panel noticeably slow
especially on shared hosting…. when you uninstall the plugin it only removes the
user roles…. the database tables and all the post meta it created are left behind….
had to clean manually with phpmyadmin… The audit log is supposed to track every 
edit but it keeps overwriting the same row instead of adding new entries. so you
lose the history of intermediate changes completely… I just found out these using
the normal analysis I do when I install new plugins and sorta stuff… I hope this
review and feedback find you well sir…

 [ 모든 1 평가 읽기 ](https://wordpress.org/support/plugin/cutmap-editorial-workflow/reviews/)

## 기여자 & 개발자

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

기여자

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

[자국어로 “Cutmap Editorial Workflow”(을)를 번역하세요.](https://translate.wordpress.org/projects/wp-plugins/cutmap-editorial-workflow)

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

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

## 변경이력

#### 1.4.6

 * Security: Removed hardcoded sample-user password (`Workflow@123`). Each new sample
   user now receives a unique password generated via `wp_generate_password(16, true)`,
   displayed once in the admin notice and never stored in source.
 * Security: Added `rest_pre_insert_{post_type}` enforcement to block unauthorized
   publish attempts via the REST API. Admin-role REST tokens can no longer bypass
   the editorial workflow when a post has an active assignment.
 * Bug fix: `reject()` no longer overwrites the approved content snapshot with the
   rejected draft. Visitors continue seeing the last explicitly approved version
   while the creator revises and re-submits.
 * Performance: `dbDelta()` schema checks in `CUTMAP_DB` and `CUTMAP_WNS` are now
   guarded by a version option (`cew_db_version`, `cew_wns_version`). The expensive
   schema introspection runs only on activation/upgrade, not on every page load.
 * Cleanup: `uninstall.php` now deletes all `_cew_*` post meta rows and removes 
   plugin version options, leaving no orphaned data after deletion.
 * Reliability: The `ALTER TABLE … DROP INDEX` migration for the audit-log unique
   key now runs reliably on every upgrade because the schema version option is cleared
   on activation.

#### 1.4.5

 * Resolved remaining critical security checklist issues including strict nonce 
   validation across all forms/actions.
 * Sanitized remaining raw $_POST and $_GET superglobal accesses and strictly avoided
   empty() checks for them.
 * Re-audited output escaping inside admin tables and guaranteed all display logic
   passes through esc_html() and esc_url().
 * Ensured every single admin_post action starts with a firm current_user_can() 
   capability check followed by wp_die().

#### 1.4.4

 * Hardened admin actions with strict `current_user_can()` capability checks.
 * Improved security by ensuring complete table cleanup on uninstall.
 * Verified input sanitization and output escaping across the plugin.

#### 1.4.3

 * Removed UTF-8 Byte Order Marks (BOM) from PHP files to satisfy automated checks.

#### 1.4.2

 * Fixed unescaped translatable label strings in the frontend shortcode output by
   using `esc_html__`.

#### 1.4.1

 * Fixed `the_title` escaping context from `wp_kses_post` to `esc_html`.
 * Fixed stale admin hook slug to ensure assets enqueue correctly.

#### 1.4.0

 * Fixed `wp_enqueue` issues by converting raw script/style tags.
 * Added rigorous escaping output (`wp_kses_post`) to all filter callbacks.
 * Cleaned up unclosed `ob_start` buffers to ensure safe hook flows.
 * Changed short prefixes to longer `CUTMAP_` prefixes.

#### 1.3.0

 * Fixed plugin header metadata parsing issues for strict WordPress.org compatibility.

#### 1.2.0

 * Renamed plugin to Cutmap Editorial Workflow.
 * Enhanced security: Enqueued all inline scripts and styles using WP core APIs.
 * Refactored prefixes to comply with WordPress official plugin guidelines.
 * Improved dashboard UI and workflow assignment screen.

#### 1.1.0

 * Hardened security and addressed plugin review feedback.
 * Refined capabilities and user role checks.
 * Removed redundant database tables for improved performance.

#### 1.0.0

 * Initial release.
 * Added Creator and Approver roles.
 * Added assignment tracking for posts and pages.
 * Added email notification system.

## 기초

 *  버전 **1.4.6**
 *  최근 업데이트: **4일 전**
 *  활성화된 설치 **10보다 적음**
 *  워드프레스 버전 ** 5.8 또는 그 이상 **
 *  다음까지 시험됨: **6.9.4**
 *  PHP 버전 ** 7.4 또는 그 이상 **
 *  언어
 * [English (US)](https://wordpress.org/plugins/cutmap-editorial-workflow/)
 * 태그:
 * [assignments](https://ko.wordpress.org/plugins/tags/assignments/)[content management](https://ko.wordpress.org/plugins/tags/content-management/)
   [editorial](https://ko.wordpress.org/plugins/tags/editorial/)[review](https://ko.wordpress.org/plugins/tags/review/)
   [workflow](https://ko.wordpress.org/plugins/tags/workflow/)
 *  [고급 보기](https://ko.wordpress.org/plugins/cutmap-editorial-workflow/advanced/)

## 평점

 별 5점 만점에 3점.

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

[Your review](https://wordpress.org/support/plugin/cutmap-editorial-workflow/reviews/#new-post)

[모든  리뷰 보기](https://wordpress.org/support/plugin/cutmap-editorial-workflow/reviews/)

## 기여자

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

## 지원

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

 [지원 포럼 보기](https://wordpress.org/support/plugin/cutmap-editorial-workflow/)