Displays the edit bookmark link anchor content.
Parameters
$link
stringoptional- Anchor text. If empty, default is ‘Edit This’.
Default:
''
$before
stringoptional- Display before edit link.
Default:
''
$after
stringoptional- Display after edit link.
Default:
''
$bookmark
intoptional- Bookmark ID. Default is the current bookmark.
Default:
null
Source
function edit_bookmark_link( $link = '', $before = '', $after = '', $bookmark = null ) {
$bookmark = get_bookmark( $bookmark );
if ( ! current_user_can( 'manage_links' ) ) {
return;
}
if ( empty( $link ) ) {
$link = __( 'Edit This' );
}
$link = '<a href="' . esc_url( get_edit_bookmark_link( $bookmark ) ) . '">' . $link . '</a>';
/**
* Filters the bookmark edit link anchor tag.
*
* @since 2.7.0
*
* @param string $link Anchor tag for the edit link.
* @param int $link_id Bookmark ID.
*/
echo $before . apply_filters( 'edit_bookmark_link', $link, $bookmark->link_id ) . $after;
}
Hooks
- apply_filters( ‘edit_bookmark_link’,
string $link ,int $link_id ) Filters the bookmark edit link anchor tag.
Changelog
Version | Description |
---|---|
2.7.0 | Introduced. |
Default Usage
Displays edit bookmark link using defaults.
Displays Edit Bookmark in Paragraph Tag
Displays edit bookmark link, with link text “edit bookmark”, in a paragraph () tag.