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
127      $available_templates
128 ) : $available_templates;
129
130 // Lock settings.
131 $user_id = wp_check_post_lock( $post->ID );
132 if ( $user_id ) {
133      $locked = false;
134
135      /** This filter is documented in wp-admin/includes/post.php */
136      if ( apply_filters( 'show_post_locked_dialog', true, $post, $user_id ) ) {
137           $locked = true;
138      }
139
140      $user_details = null;
141      if ( $locked ) {
142           $user         = get_userdata( $user_id );
143           $user_details = array(
144                'name' => $user->display_name,
145           );