Description
This plugin generates a unique link you can send to a friend so they can read a post before you publish it. The link works for someone who is not logged in and has no account, it only ever opens the one post it was issued for, and it stops working by itself when the time you set runs out.
Everything happens under Posts -> WP-DraftsForFriends: pick an unpublished post, say how long the link should last, and copy the link it gives you. The list below shows every link you have out, how long each has left, and lets you extend or revoke them. The settings are the second tab of that same page.
Sharing takes the publish_posts capability rather than manage_options: a plugin for sharing your own drafts has no business asking for the capability that lets somebody reconfigure the site.
Modified from Drafts for Friends, originally by Neville Longbottom. The plugin icon is by Freepik from Flaticon.
Features
- A unique 32-character link per share, valid only for the post it was issued for
- An expiry you choose in seconds, minutes, hours or days, with a default you set once
- Works for a logged-out visitor with no account
- Scheduled and pending posts can be shared as well as drafts
- A sortable, paginated list of every link you have out, with the time each has left
- Extend or revoke links in bulk
- Comments are forced closed on a shared draft
- Moving a post to the trash revokes its links; restoring the post brings them back
- Multisite-safe, including network activation
Donations
I spent most of my free time creating, updating, maintaining and supporting these plugins, if you really love my plugins and could spare me a couple of bucks, I will really appreciate it. If not feel free to use it without any obligations.
Usage
Go to Posts -> WP-DraftsForFriends. The page has two tabs, Shared Drafts and Settings.
Under Share a Draft, choose an unpublished post, set how long the link should last, and press Share Draft. The link appears in the list below; press Copy link to put it on your clipboard and send it to whoever needs it.
The list shows every link you have out. Expires After counts down and then reads Expired. Twenty rows are shown at a time, every column except the link is sortable, and Screen Options changes how many rows you see.
To extend links, set Extend by to the duration you want to add, tick the rows, choose Extend selected and press Apply. To revoke them, tick the rows and choose Revoke selected. Both are bulk actions rather than links on each row, and deliberately so: a link is a GET, and a browser or link checker that quietly prefetches one would have revoked every share on the page before you knew about it.
The Settings tab sets the duration a new share starts on. It is only a starting value — both the share form and Extend by can be changed for one share without changing the setting. That tab takes manage_options, so an author sees the Shared Drafts tab and not the Settings one.
Anyone with the edit_others_posts capability — administrators and editors — sees every shared draft on the site and can share any unpublished post. Authors and contributors see only their own, and can only share posts they are allowed to edit.
WP-CLI
wp draftsforfriends list --user=admin
wp draftsforfriends create 42 --user=admin
wp draftsforfriends create 42 --expires=14 --measure=d --user=admin
wp draftsforfriends extend 3 4 5 --expires=1 --measure=d --user=admin
wp draftsforfriends revoke 3 --yes --user=admin
create prints the share link on a line of its own before its success message, and `list` prints one per row. **A share link is the credential** — whoever holds it reads the unpublished post until the link expires, with no account and no login — so treat the output of both as you would the drafts themselves. Shell history, a CI log and a captured `stdout` are all places those links now live.
Pass --user. WP-CLI runs as nobody unless told otherwise, and every one of these is scoped exactly as the screen is: a share belongs to whoever created it, anyone with edit_others_posts sees them all, and creating, extending or revoking one checks that you may edit the post it points at. Run as nobody, list reports nothing and the rest are refused.
--expires and `--measure` default to the duration on the **Settings** tab, the same value the share form and **Extend by** start on. `extend` and `revoke` take as many ids as you like, exactly as the bulk actions do. `revoke` asks before it acts, because the link stops working immediately and cannot be restored; `--yes` answers for a script.
There is no subcommand for the settings — that is one option row, which wp option get wp_draftsforfriends_options already reads.
Filters
wp_draftsforfriends_capability decides who may reach each tab. The context is `shares` for the Shared Drafts tab or `settings` for the Settings tab:
add_filter( 'wp_draftsforfriends_capability', function ( $capability, $context ) {
return 'settings' === $context ? 'manage_options' : 'edit_posts';
}, 10, 2 );
wp_draftsforfriends_share_url filters the link a friend is given, and
wp_draftsforfriends_requested_hash reads the hash back off the request. **They
are one contract.** Change the shape of the link without teaching the plugin to
recognise it and every share link 404s, with nothing on the admin screens
looking wrong:
add_filter( 'wp_draftsforfriends_share_url', function ( $url, $share ) {
return home_url( '/secret/' . $share->hash . '/' );
}, 10, 2 );
add_filter( 'wp_draftsforfriends_requested_hash', function ( $hash ) {
if ( '' !== $hash ) {
return $hash;
}
$path = isset( $_SERVER['REQUEST_URI'] ) ? sanitize_text_field( wp_unslash( $_SERVER['REQUEST_URI'] ) ) : '';
return preg_match( '#/secret/([A-Za-z0-9]+)/#', $path, $m ) ? $m[1] : '';
} );
The default link is ?p=<id> rather than the post’s permalink, and that is not
an oversight: the preview works by catching the row WordPress fetches for a bare
post id and puts back before rendering. A permalink looks the post up by slug
among the public statuses, so an unpublished post is never found at all.
Actions
Three fire as a share moves through its life, each after the write has
succeeded:
wp_draftsforfriends_share_created— the stored share, and the post it shares.wp_draftsforfriends_share_extended— the share as it now stands, and the
expiry it carried before.wp_draftsforfriends_share_revoked— the share as it was; the link has
already stopped working.
add_action( 'wp_draftsforfriends_share_created', function ( $share, $post ) {
error_log( sprintf( 'Shared "%s" until %s', $post->post_title, $share->date_expired ) );
}, 10, 2 );
Screenshots



Installation
- Install and activate the plugin.
- Go to
WP-Admin -> Posts -> WP-DraftsForFriendsand share your first draft.
There is nothing to configure before you start. Sharing takes the publish_posts capability rather than manage_options, so any author can share their own drafts without being made an administrator.
FAQ
-
Where did the Drafts for Friends page go?
-
It is still under Posts, and it is now one page with two tabs — Shared Drafts and Settings — rather than a screen with no settings of its own.
The address changed, from
edit.php?page=wp-draftsforfriends/wp-draftsforfriends.phptoedit.php?page=wp-draftsforfriends, so an old bookmark needs replacing. The old address had the plugin’s own folder name in it, which meant the page moved if you ever renamed the folder.Links you have already given to friends are unaffected. Those point at the post itself and never went through the admin screen.
-
Where have Extend and Delete gone from each row?
-
They are bulk actions now, above and below the list. Tick the rows you want, choose Extend selected or Revoke selected, and press Apply. Extend uses the Extend by duration next to the dropdown.
A row action is a plain link, and a plain link is one browser prefetch or one link checker away from being followed without anybody meaning to. Revoking cannot be undone, and extending silently prolongs public access to something you have not published, so neither should be reachable that way.
-
A friend says the link shows “Page not found”
-
The link has expired, it has been revoked, or the post has been moved to the trash. Open Posts -> WP-DraftsForFriends and look at the Expires After column: an expired share reads
Expired. Tick that row, set Extend by, and choose Extend selected — the same link starts working again. Restoring the post from the trash also makes its links work again.Once the post is published the link stops previewing and simply shows the published post, which is public by then anyway.
-
Anyone with the
edit_others_postscapability — administrators and editors — sees every shared draft on the site and can share any unpublished post. Authors and contributors see only their own, and can only share posts they are allowed to edit. -
Can my friend leave a comment on the draft?
-
No. Comments are forced closed on a shared draft.
-
Does the friend need an account?
-
No. That is the point of the plugin: the link works for a logged-out visitor, and only for the post it was issued for, and only until it expires.
-
Does the screen need JavaScript?
-
No. Sharing, extending and revoking are ordinary form submissions handled on the server, so all three work with JavaScript turned off. The script only adds the Copy link button, a warning before you revoke, and catching a missing draft or a nonsense duration before the page reloads.
Reviews
Contributors & Developers
“WP-DraftsForFriends” is open source software. The following people have contributed to this plugin.
Contributors“WP-DraftsForFriends” has been translated into 2 locales. Thank you to the translators for their contributions.
Translate “WP-DraftsForFriends” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
2.0.0
- BREAKING: Requires WordPress 6.8 and PHP 8.2, up from 6.0 and 7.4.
- BREAKING: The screen has moved from
edit.php?page=wp-draftsforfriends/wp-draftsforfriends.phptoedit.php?page=wp-draftsforfriends, still underPosts -> WP-DraftsForFriends, and is now one page with two tabs,Shared DraftsandSettings. Links already sent to friends are not affected. - BREAKING: Extend and Delete are no longer links on each row. They are bulk actions named Extend selected and Revoke selected, applied to the rows you tick. A row action is a
GETand one prefetch away from revoking every share on the page. - BREAKING: Removed the
WPDraftsForFriendsclass. The plugin is nowWP_DraftsForFriendsplusWP_DraftsForFriends_Admin,_Install,_List_Table,_Options,_Preview,_Settingsand_Sharesunderincludes/. - BREAKING: Removed the
wp_ajax_draftsforfriends_adminendpoint. Every write is now an ordinary nonced form post to the screen. - BREAKING: Dropped the
dff_page,dff_sortbyanddff_sortorderquery arguments in favour of core’spaged,orderbyandorder. A bookmarked sorted URL no longer sorts. - NEW: Added a
Settingstab for the default share duration, which was hardcoded to two hours. - NEW: Settings are stored in a single
wp_draftsforfriends_optionsrow and the upgrade markers inwp_draftsforfriends_version. Both are removed on uninstall, on a single site and across a network, along with the pre-2.0.0draftsforfriends_db_versionrow. - NEW: Added the
wp_draftsforfriends_capabilityfilter, so either tab can be handed to another capability. It is answered byoption_page_capability_wp_draftsforfriends_optionstoo, so a filtered settings capability governs the save as well as the screen. - NEW: Added the
wp_draftsforfriends_share_created,wp_draftsforfriends_share_extendedandwp_draftsforfriends_share_revokedactions, each firing after the write has succeeded. - NEW: Added the
wp_draftsforfriends_share_urlfilter and its companionwp_draftsforfriends_requested_hash. The link a friend is given and the check that lets them read it now go through one contract, so a site can move share links to a shape of its own. Filtering only the first leaves every link 404ing. - NEW: Added a Copy link button to each row.
- NEW: Added a Shared drafts per page screen option.
- NEW: A
wp draftsforfriendsWP-CLI command —list,create,extendandrevoke, the four things the screen does. It prints share links, which are credentials, and needs--userbecause everything it does is scoped to who is asking. - NEW: Added a PHPUnit test suite, vitest coverage for the script, and GitHub Actions CI.
- CHANGED: The shared drafts list is a standard WordPress list table, with sortable columns, standard pagination at twenty rows and bulk actions, replacing roughly 250 lines of hand-rolled pagination links and column headers.
- CHANGED: Messages are core admin notices raised through
add_settings_error()rather than a hand-built banner the script unhid. - CHANGED: The plugin now works when installed under a directory name other than
wp-draftsforfriends. - CHANGED: Dropped the jQuery dependency; the script is plain JavaScript, and nothing on the screen depends on it running.
- CHANGED: Moving a shared post to the trash now revokes its links instead of leaving them working. Restoring the post from the trash makes them work again.
- CHANGED: Restructured the plugin into
includes/with one class per file. - CHANGED: Removed
img/receipt_share.png, which was only ever used by theicon32admin markup WordPress dropped in 3.8. - FIXED: Fixed a bug where a shared draft could appear in places it was not shared to. Once one valid preview link had been opened, the post was re-used for every later query in that same request that returned nothing of its own, including requests carrying a wrong, expired or deleted link.
- FIXED: Fixed the post title being output unescaped on the admin screen.
- FIXED: Fixed extending and deleting checking permissions against a post supplied with the request rather than the one the shared draft actually points at.
- FIXED: Fixed activation and uninstall fatally erroring on multisite, which called a function removed in WordPress 5.1.
- FIXED: Fixed multisite activation and uninstall skipping every site past the hundredth.
- FIXED: Fixed the shared drafts table not being registered with
$wpdb->tables, so its name was wrong insideswitch_to_blog(). - FIXED: Fixed the duration unit dropdowns having no label, which left screen readers announcing them as unlabelled combo boxes.
- FIXED: Fixed the item count above the list counting shares whose post had been deleted and which were never listed. Deleting a post permanently now deletes its shared drafts.
- FIXED: Fixed eleven strings never being translated because of a typo in the text domain.
- FIXED: Fixed several PHP 8 warnings.
- FIXED: Fixed the Shared drafts per page screen option being thrown away when applied, so the list always paged at twenty whatever you set it to.
- NOTE: Every database query is now a single prepared statement with every value bound, including the sort column, which goes through the
%iidentifier placeholder.
