wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_set_post_lock › WordPress Function
Since2.5.0
Deprecatedn/a
› wp_set_post_lock ( $post )
Parameters: |
|
Returns: |
|
Defined at: |
|
Codex: |
Marks the post as currently being edited by the current user.
Related Functions: wp_check_post_lock, wp_set_post_cats, wp_refresh_post_lock, wp_get_first_block, wp_get_post_cats
Source
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 ); }