Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: show_post_locked_dialog

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
137      $available_templates
138 ) : $available_templates;
139
140 // Lock settings.
141 $user_id = wp_check_post_lock( $post->ID );
142 if ( $user_id ) {
143      $locked = false;
144
145      /** This filter is documented in wp-admin/includes/post.php */
146      if ( apply_filters( 'show_post_locked_dialog', true, $post, $user_id ) ) {
147           $locked = true;
148      }
149
150      $user_details = null;
151      if ( $locked ) {
152           $user         = get_userdata( $user_id );
153           $user_details = array(
154                'name' => $user->display_name,
155           );