wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



wp_untrash_post_set_previous_status › WordPress Function

Da5.6.0
Deprecaton/a
wp_untrash_post_set_previous_status ( $new_status, $post_id, $previous_status )
Parametri: (3)
  • (string) $new_status The new status of the post being restored.
    Richiesto:
  • (int) $post_id The ID of the post being restored.
    Richiesto:
  • (string) $previous_status The status of the post at the point where it was trashed.
    Richiesto:
Ritorna:
  • (string) The new status of the post.
Definito a:
Codex:

Filters callback which sets the status of an untrashed post to its previous status.

This can be used as a callback on the wp_untrash_post_status filter.


Sorgenti

function wp_untrash_post_set_previous_status( $new_status, $post_id, $previous_status ) {
	return $previous_status;
}