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
221           'slug' => $image_size_slug,
222           'name' => $image_size_name,
223      );
224 }
225
226 // Lock settings.
227 $user_id = wp_check_post_lock( $post->ID );
228 if ( $user_id ) {
229      /** This filter is documented in wp-admin/includes/post.php */
230      if ( apply_filters( 'show_post_locked_dialog', true, $post, $user_id ) ) {
231           $locked = true;
232      }
233
234      $user_details = null;
235      if ( $locked ) {
236           $user         = get_userdata( $user_id );
237           $user_details = array(
238                'name' => $user->display_name,
239           );