Beschrijving
Share a link to anonymous users to preview a draft of a post (or any other public post type) before it is published.
Have you ever been writing a post with the help of someone who does not have access to your site and needed to give them the ability to preview it before publishing? This plugin takes care of that by generating an URL with an expiring nonce that can be given out for public preview.
Previously this plugin was maintained by Matt Martz and was an idea of Jonathan Dingman. Photo by Annelies Geneyn.
Gebruik
- To enable a public post preview check the box in the document settings. In the classic editor it’s in the “Publish” meta box.
- The link will be displayed if the checkbox is checked, you can copy and share the link with your friends.
- To disable a preview uncheck the box again.
Schermafbeeldingen
Installatie
For an installation through WordPress:
- Go to the ‘Add New’ plugins screen in your WordPress admin area
- Zoek naar ‘Public Post Preview’
- Klik op ‘Nu installeren’ en activeer de plugin
For a manual installation via FTP:
- Upload the
public-post-preview
directory to the/wp-content/plugins/
directory - Activate the plugin through the ‘Plugins’ screen in your WordPress admin area
To upload the plugin through WordPress, instead of FTP:
- Upload the downloaded zip file on the ‘Add New’ plugins screen (see the ‘Upload’ tab) in your WordPress admin area and activate.
FAQ
-
I can’t find the option for preview links. Where is it?
-
The checkbox is only available for non-published posts and once a post was saved as a draft.
-
After some time the preview link returns the message “The link has been expired!”. Why?
-
The plugin generates an URL with an expiring nonce. By default a link “lives” 48 hours. After 48 hours the link is expired and you need to copy and share a new link which is automatically generated on the same place under the editor.
-
48 hours are not enough to me. Can I extend the nonce time?
-
Yes, of course. Go to Settings > Reading > Public Post Preview and increase the
Expiration Time setting. You can also use the filterppp_nonce_life
. Example for 5 days:add_filter( 'ppp_nonce_life', 'my_nonce_life' ); function my_nonce_life() { return 5 * DAY_IN_SECONDS; }
Beoordelingen
Bijdragers & ontwikkelaars
“Public Post Preview” is open source software. De volgende personen hebben bijgedragen aan deze plugin.
Bijdragers“Public Post Preview” is vertaald in 26 talen. Dank voor de vertalers voor hun bijdragen.
Vertaal “Public Post Preview” naar jouw taal.
Interesse in de ontwikkeling?
Bekijk de code, haal de SVN repository op, of abonneer je op het ontwikkellog via RSS.
Changelog
2.10.0 (2022-11-19):
- Compatibel met WordPress 6.1.
- Integrate with User Switching: Direct the user to the public preview of a post when they switch off from the post editing screen. Props @johnbillion.
2.9.3 (2021-03-12):
- Ondersteuning voor WordPress 5.7.
- Create a fresh preview URL when enabling public preview.
- Add check for possibly undefined PHP “superglobals”. Props @waviaei.
Voor meer informatie: CHANGELOG.md.