wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_set_post_lock › WordPress Function
Seit2.5.0
Veraltetn/v
› wp_set_post_lock ( $post )
Parameter: |
|
Gibt zurück: |
|
Definiert in: |
|
Codex: |
Marks the post as currently being edited by the current user.
Ähnliche Funktionen: wp_check_post_lock, wp_set_post_cats, wp_refresh_post_lock, wp_get_first_block, wp_get_post_cats
Quellcode
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 ); }