wp_set_post_lock

函数
wp_set_post_lock ( $post )
参数
  • (int|WP_Post) $post ID or object of the post being edited.
    Required:
返回值
  • (array|false) { Array of the lock time and user ID. False if the post does not exist, or there is no current user. @type int $0 The current time as a Unix timestamp. @type int $1 The ID of the current user. }
定义位置
相关方法
wp_check_post_lockwp_set_post_catswp_refresh_post_lockwp_set_post_tagswp_get_post_cats
引入
2.5.0
弃用
-

wp_set_post_lock: 这个函数锁住一个文章,防止其他用户编辑它。它接受文章的ID和锁定该文章的用户的ID。

将该文章标记为当前用户正在编辑。

function wp_set_post_lock( $post ) {
	$post = get_post( $post );

	if ( ! $post ) {
		return false;
	}

	$user_id = get_current_user_id();

	if ( 0 == $user_id ) {
		return false;
	}

	$now  = time();
	$lock = "$now:$user_id";

	update_post_meta( $post->ID, '_edit_lock', $lock );

	return array( $now, $user_id );
}

常见问题

FAQs
查看更多 >