Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: edit_bookmark_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
1042      $bookmark = get_bookmark($bookmark);
1043
1044      if ( !current_user_can('manage_links') )
1045           return;
1046
1047      if ( empty($link) )
1048           $link = __('Edit This');
1049
1050      $link = '<a href="' . get_edit_bookmark_link( $bookmark ) . '" title="' . esc_attr__( 'Edit Link' ) . '">' . $link . '</a>';
1051      echo $before . apply_filters( 'edit_bookmark_link', $link, $bookmark->link_id ) . $after;
1052 }
1053
1054 /**
1055  * Retrieve edit user link
1056  *
1057  * @since 3.5.0
1058  *
1059  * @param int $user_id Optional. User ID. Defaults to the current user.
1060  * @return string URL to edit user page or empty string.