Title: Draft Concluder
Author: David Artiss
Published: <strong>9 Tháng 11, 2020</strong>
Last modified: 2 Tháng 12, 2025

---

Tìm kiếm plugin

![](https://ps.w.org/draft-concluder/assets/icon.svg?rev=3025364)

# Draft Concluder

 Bởi [David Artiss](https://profiles.wordpress.org/dartiss/)

[Tải về](https://downloads.wordpress.org/plugin/draft-concluder.1.1.3.zip)

 * [Chi tiết](https://vi.wordpress.org/plugins/draft-concluder/#description)
 * [Đánh giá](https://vi.wordpress.org/plugins/draft-concluder/#reviews)
 *  [Cài đặt](https://vi.wordpress.org/plugins/draft-concluder/#installation)
 * [Nhà phát triển](https://vi.wordpress.org/plugins/draft-concluder/#developers)

 [Hỗ trợ](https://wordpress.org/support/plugin/draft-concluder/)

## Mô tả

Based on [an idea by John Blackbourn](https://twitter.com/johnbillion/status/1314494422529331203),
and mentioned by [Post Status](https://poststatus.com/), this plugin is designed
to be a reminder to those who leave draft posts unloved. And, yes, all of John’s
ideas are here, with more to boot.

 * Send emails out on a daily or weekly schedule and at a time that you’d prefer
 * Look for draft pages as well as posts, if you like. Or just pages, if that’s 
   what you want. We won’t judge
 * Target those drafts that were created more than a specific time period ago, or
   have not been updated for a while
 * Each user, who has drafts that then reminding about, will receive an email. No,
   they can’t unsubscribe from them
 * Each email will show the number of drafts, along with a reminder of each of them
 * Optional ability to prevent the plugin from being deactivated (allow you to avoid
   the temptation to do so rather than, you know, deal with the drafts)
 * Debug features to allow to verify what’s being sent

Oh, and, naturally, the code passes [WordPress](https://github.com/WordPress/WordPress-Coding-Standards)
and [WordPress VIP](https://github.com/Automattic/VIP-Coding-Standards) coding standards.

I’d like to thank [Caleb Burks](https://calebburks.com/) for the feedback he provided.
Also, the iconography is courtesy of the very talented [Janki Rathod](https://www.fiverr.com/jankirathore).

**Please visit the [Github page](https://github.com/dartiss/draft-concluder) for
the latest code development, planned enhancements and known issues**

### Mentions

Draft Concluder was mentioned in issue 421 of [the Post Status newsletter](https://poststatus.com/newsletter/)(
published 16th November 2020).

It was also mentioned in [edition 21 of the WP Weekly newsletter](https://thewpweekly.com/21/)(
published 23rd November 2020)

## Ảnh màn hình

 * [[
 * Available options, available in Settings -> General

## Cài đặt

Draft Concluder can be found and installed via the Plugin menu within WordPress 
administration (Plugins -> Add New). Alternatively, it can be downloaded from WordPress.
org and installed manually…

 1. Upload the entire `draft-concluder` folder to your `wp-content/plugins/` directory.
 2. Activate the plugin through the ‘Plugins’ menu in WordPress administration.

It’s now ready to go but, if you want to tweak further, head to Settings -> General.

## Hỏi đáp

### Why’s it called Draft Concluder?

Because it helps you find an end to those annoying drafts that sit around and never
get completed. And it’s a pun on “draft excluder”. Yes, I know – blame my SO, who
came up with the name.

### What does the “Status” on the Settings screen mean?

In Settings -> General -> Draft Concluder, you’ll see, under the title, a status–
this will tell you when it last ran and whether it was successful or not.

The success is dependent on whether any error was returned when sending out emails–
a failure would indicate a problem with `wp_mail` and will need further investigation.

### The email isn’t turning up at the time that it’s scheduled!

The internal WordPress scheduler is an interesting beast. It’s totally reliant on
someone visiting your site for it to trigger – so if you set it to 1am but nobody
visits until 8am then, yeah, you won’t get email until after 8am.

Thankfully, I thought of you when I wrote the plugin. As per the previous question,
there’s a status on the settings screen. Additionally, there are 2 shortcodes that
you can add to any post or page to help you out.

    ```
    [dc_now] - this will run the email generator and show, on screen, what would be sent if you were running it now.

    [dc_last_run] - this will show, on screen, what happened during the last scheduled run. So, if the status in the settings shows it ran, you can use this shortcode to display what was actually sent and to whom.
    ```

### Can I unsubscribe from the email that I’m sent?

Heck, no. That’s the beauty of this plugin.

### Can I just send the email to spam instead?

I wouldn’t do that. The email comes from the site’s account – marking it as spam
may also lead to all other site emails going the same way, including password resets
and important security information.

Look, if it means that much to you, maybe look to sorting out your drafts, yes?

### How can I prevent the plugin from being deactivated?

…said no-one. But seriously, you want to remove the temptation, right?

Crack open your site’s `wp-config.php` and add the following line of code…

    ```
    define( 'DO_NOT_DISABLE_MY_DRAFT_REMINDER', true );
    ```

And the deed is done – you can no longer disable the plugin (cue diabolical laughter).

### Do you support this plugin on forks of WordPress?

No. It was developed for WordPress and so forks remain unsupported. I have no intention
of developing and testing this on any other version.

## Đánh giá

Không có đánh giá nào cho plugin này.

## Người đóng góp & Lập trình viên

“Draft Concluder” là mã nguồn mở. Những người sau đã đóng góp vào plugin này.

Những người đóng góp

 *   [ David Artiss ](https://profiles.wordpress.org/dartiss/)

“Draft Concluder” đã được dịch qua 2 ngôn ngữ. Cảm ơn [những người tham gia dịch](https://translate.wordpress.org/projects/wp-plugins/draft-concluder/contributors)
vì đóng góp của họ.

[Dịch “Draft Concluder” sang ngôn ngữ của bạn.](https://translate.wordpress.org/projects/wp-plugins/draft-concluder)

### Muốn tham gia phát triển?

[Duyệt code](https://plugins.trac.wordpress.org/browser/draft-concluder/), check
out [SVN repository](https://plugins.svn.wordpress.org/draft-concluder/), hoặc theo
dõi [nhật ký phát triển](https://plugins.trac.wordpress.org/log/draft-concluder/)
qua [RSS](https://plugins.trac.wordpress.org/log/draft-concluder/?limit=100&mode=stop_on_copy&format=rss).

## Nhật ký thay đổi

I use semantic versioning, with the first release being 1.0.

#### 1.1.3

 * Enhancement: Code quality improvements – now abides by the WordPress rules for
   PHPCS
 * Enhancement: Changed the format of the date and time in the settings screen

#### 1.1.2

 * Bug: Corrected incorrect text domains – thanks to Alex Lion for identifying this.
 * Enhancement: I updated my PHPCS rulesets and, sure enough, those nerds had changed
   them. So I had some more changes to make to bring my code inline with the standards.
 * Enhancement: I’d split the code into 4 separate files and, yet, none of them 
   were particularly big. To make thing easier I’ve combined them back again.

#### 1.1.1

 * Enhancement: Added a word count to the draft information

#### 1.1

 * Enhancement: Making better use of `selected` command for my settings output (
   thanks to [Tom Nowell](https://tomjn.com/))
 * Enhancement: You can now choose any hour of the day for the email to be generated,
   not just select hours
 * Enhancement: Various improvements to plugin meta and this README
 * Enhancement: Improvements to email format (thanks to [Michelle Keefer](https://consultmk.com/))
 * Enhancement: When changing the hour that the email is generated, and you’ve chosen
   a daily run, it will be produced same day if the hour hasn’t already passed
 * Enhancement: Added next run time to the settings output
 * Enhancement: Improved internationalization
 * Bug: Shortcodes now correctly output (thanks to [Tom Nowell](https://tomjn.com/))

#### 1.0.1

 * Bug: In what must be the quickest time from initial release to first bug report,
   thanks to [JeanPaulH](https://wordpress.org/support/users/djr/) for finding a
   stray comma!

#### 1.0

 * Initial release

## Plugin cộng đồng

Plugin này được phát triển và hỗ trợ bởi một cộng đồng. [Đóng góp cho plugin này](https://github.com/dartiss/draft-concluder)

## Meta

 *  Phiên bản **1.1.3**
 *  Cập nhật lần cuối **6 tháng trước**
 *  Số lượt cài đặt **Ít hơn 10**
 *  Phiên bản WordPress ** 4.6 hoặc cao hơn **
 *  Đã kiểm tra lên đến **6.9.4**
 *  Phiên bản PHP ** 7.4 hoặc cao hơn **
 *  Ngôn ngữ
 * [Chinese (Taiwan)](https://tw.wordpress.org/plugins/draft-concluder/), [English (UK)](https://en-gb.wordpress.org/plugins/draft-concluder/),
   và [English (US)](https://wordpress.org/plugins/draft-concluder/).
 *  [Dịch sang ngôn ngữ của bạn](https://translate.wordpress.org/projects/wp-plugins/draft-concluder)
 * Thẻ
 * [drafts](https://vi.wordpress.org/plugins/tags/drafts/)[email](https://vi.wordpress.org/plugins/tags/email/)
   [pages](https://vi.wordpress.org/plugins/tags/pages/)[posts](https://vi.wordpress.org/plugins/tags/posts/)
   [reminder](https://vi.wordpress.org/plugins/tags/reminder/)
 *  [Nâng cao](https://vi.wordpress.org/plugins/draft-concluder/advanced/)

## Đánh giá

Chưa có đánh giá nào được gửi.

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

[Xem tất cả đánh giá](https://wordpress.org/support/plugin/draft-concluder/reviews/)

## Những người đóng góp

 *   [ David Artiss ](https://profiles.wordpress.org/dartiss/)

## Hỗ trợ

Có điều gì muốn nói? cần giúp đỡ?

 [Xem diễn đàn hỗ trợ](https://wordpress.org/support/plugin/draft-concluder/)

## Ủng hộ

Bạn có muốn hỗ trợ vào sự phát triển của plugin này?

 [ Ủng hộ plugin này ](https://artiss.blog/donate)