wp_untrash_post_set_previous_status

函数
wp_untrash_post_set_previous_status ( $new_status, $post_id, $previous_status )
参数
  • (string) $new_status The new status of the post being restored.
    Required:
  • (int) $post_id The ID of the post being restored.
    Required:
  • (string) $previous_status The status of the post at the point where it was trashed.
    Required:
返回值
  • (string) The new status of the post.
定义位置
相关方法
wp_untrash_post_commentswp_transition_post_statuswp_untrash_postwp_trash_post_commentswp_get_post_revisions_url
引入
5.6.0
弃用
-

wp_untrash_post_set_previous_status: 这个函数设置一个被销毁的文章的先前状态,其他函数用它来确定这个文章在被销毁之前的状态。

过滤器的回调,将一个未废止的文章的状态设置为之前的状态。

这可以作为`wp_untrash_post_status`过滤器的一个回调。

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

常见问题

FAQs
查看更多 >