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



wp_ajax_untrash_post › WordPress Function

Seit3.1.0
Veraltetn/v
wp_ajax_untrash_post ( $action )
Parameter:
  • (string) $action Action to perform.
    Erforderlich: Ja
Definiert in:
Codex:

Handles restoring a post from the Trash via AJAX.



Quellcode

function wp_ajax_untrash_post( $action ) {
	if ( empty( $action ) ) {
		$action = 'untrash-post';
	}

	wp_ajax_trash_post( $action );
}