wpseek.com
A WordPress-centric search engine for devs and theme authors



_show_post_preview › WordPress Function

Since2.7.0
Deprecatedn/a
_show_post_preview ( No parameters )
Access:
  • private
Defined at:
Codex:

Filters the latest content for preview from the post autosave.



Source

function _show_post_preview() {
	if ( isset( $_GET['preview_id'] ) && isset( $_GET['preview_nonce'] ) ) {
		$id = (int) $_GET['preview_id'];

		if ( false === wp_verify_nonce( $_GET['preview_nonce'], 'post_preview_' . $id ) ) {
			wp_die( __( 'Sorry, you are not allowed to preview drafts.' ), 403 );
		}

		add_filter( 'the_preview', '_set_preview' );
	}
}