This page redirects to an external site: https://developer.wordpress.org/reference/functions/edit_bookmark_link/
Displays a link to edit the current bookmark, if the user is logged in and allowed to edit the bookmark. It must be within The Loop.
Use get_edit_bookmark_link to retrieve the url.
<code style="color: #000000"> <span style="color: #0000BB"><?php edit_bookmark_link</span><span style="color: #007700">( </span><span style="color: #0000BB">$link</span><span style="color: #007700">, </span><span style="color: #0000BB">$before</span><span style="color: #007700">, </span><span style="color: #0000BB">$after</span><span style="color: #007700">, </span><span style="color: #0000BB">$bookmark </span><span style="color: #007700">); </span><span style="color: #0000BB">?></span> </code>
Displays edit bookmark link using defaults.
<?php edit_bookmark_link(); ?>
Displays edit bookmark link, with link text "edit bookmark", in a paragraph (<p>) tag.
<?php edit_bookmark_link('edit bookmark', '<p>', '</p>'); ?>
Since: 2.7.0
edit_bookmark_link() is located in wp-includes/link-template.php.
Edit Link: edit_post_link(), edit_comment_link(), edit_tag_link(), edit_bookmark_link()