Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: edit_post_link

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
488      if ( $post->post_type == 'page' ) {
489           if ( !current_user_can( 'edit_page', $post->ID ) )
490                return;
491      } else {
492           if ( !current_user_can( 'edit_post', $post->ID ) )
493                return;
494      }
495
496      $link = '<a href="' . get_edit_post_link( $post->ID ) . '" title="' . __( 'Edit post' ) . '">' . $link . '</a>';
497      echo $before . apply_filters( 'edit_post_link', $link, $post->ID ) . $after;
498 }
499
500 function get_edit_comment_link( $comment_id = 0 ) {
501      $comment = &get_comment( $comment_id );
502      $post = &get_post( $comment->comment_post_ID );
503
504      if ( $post->post_type == 'page' ) {
505           if ( !current_user_can( 'edit_page', $post->ID ) )
506                return;