返回介绍

wp_untrash_post()

发布于 2017-09-11 13:02:10 字数 2271 浏览 844 评论 0 收藏 0

wp_untrash_post( int $post_id )

Restore a post or page from the Trash.


description


参数

$post_id

(int) (Optional) Post ID. Default is ID of the global $post.


返回值

(WP_Post|false) WP_Post object. False on failure.


源代码

File: wp-includes/post.php

function wp_untrash_post( $post_id = 0 ) {
	if ( !$post = get_post($post_id, ARRAY_A) )
		return $post;

	if ( $post['post_status'] != 'trash' )
		return false;

	/**
	 * Fires before a post is restored from the trash.
	 *
	 * @since 2.9.0
	 *
	 * @param int $post_id Post ID.
	 */
	do_action( 'untrash_post', $post_id );

	$post_status = get_post_meta($post_id, '_wp_trash_meta_status', true);

	$post['post_status'] = $post_status;

	delete_post_meta($post_id, '_wp_trash_meta_status');
	delete_post_meta($post_id, '_wp_trash_meta_time');

	wp_insert_post( wp_slash( $post ) );

	wp_untrash_post_comments($post_id);

	/**
	 * Fires after a post is restored from the trash.
	 *
	 * @since 2.9.0
	 *
	 * @param int $post_id Post ID.
	 */
	do_action( 'untrashed_post', $post_id );

	return $post;
}

更新日志

Versiondescription
2.9.0Introduced.

相关函数

Uses

  • wp-includes/formatting.php: wp_slash()
  • wp-includes/plugin.php: do_action()
  • wp-includes/post.php: wp_insert_post()
  • wp-includes/post.php: wp_untrash_post_comments()
  • wp-includes/post.php: untrash_post
  • wp-includes/post.php: untrashed_post
  • wp-includes/post.php: get_post_meta()
  • wp-includes/post.php: delete_post_meta()
  • wp-includes/post.php: get_post()
  • Show 4 more uses Hide more uses

Used By

  • wp-admin/includes/ajax-actions.php: wp_ajax_trash_post()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文