wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_ajax_get_permalink › WordPress Function

Seit3.1.0
Veraltetn/v
› wp_ajax_get_permalink ( Keine Parameter )
Definiert in:
Codex:

Handles retrieving a permalink via AJAX.



Quellcode

function wp_ajax_get_permalink() {
	check_ajax_referer( 'getpermalink', 'getpermalinknonce' );
	$post_id = isset( $_POST['post_id'] ) ? (int) $_POST['post_id'] : 0;
	if ( ! $post_id ) {
		// Bypass call to get_preview_post_link() for unspecified post ID.
		wp_die( '' );
	}
	if ( ! current_user_can( 'edit_post', $post_id ) ) {
		wp_die( -1 );
	}
	wp_die( get_preview_post_link( $post_id ) );
}