wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
_show_post_preview is private and should not be used in themes or plugins directly.
_show_post_preview › WordPress Function
Seit2.7.0
Veraltetn/v
› _show_post_preview ( Keine Parameter )
Zugriff: |
|
Definiert in: |
|
Codex: |
Filters the latest content for preview from the post autosave.
Ähnliche Funktionen: post_preview, wp_post_preview_js, _set_preview, is_post_type_viewable, is_preview
Quellcode
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' ); } }