Public Post Preview is a plugin that allows an author to generate a public preview link allowing non-logged in users to view a page/post while it is in Draft mode.
Usage
- Installing and Activate the Public Post Preview plugin.
- Save a draft of your page/post.
- Expand the “Settings” panel and navigate to the “Page” tab.
- Check the “Enable public preview” box, and copy the preview link.
In the Tablao theme, all preview links will expire after 60 days. To change this setting, see Changing Preview Expiration Time.
Change Preview Expiration Time
To change the Public Post Preview link expiration time, navigated to “Theme Options” and find “Public Post Preview Expiration” setting. Enter the number of seconds that you would like all preview links to remain active for.
If left blank, the expiration time will default to 60 days (5184000 seconds).
If you are using another theme, you can also change the expiration by adding the following PHP to functions.php:
add_filter( 'ppp_nonce_life', function() {
return 60 * 60 * 24 * 60; // 60 days
});