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