edit_bookmark_link()WP 2.7.0

Displays the edit bookmark link anchor content.

Hooks from the function

Return

null. Nothing.

Usage

edit_bookmark_link( $link, $before, $after, $bookmark );
$link(string)
Anchor text. If empty. Default empty.
Default: 'Edit This'
$before(string)
Display before edit link.
Default: ''
$after(string)
Display after edit link.
Default: ''
$bookmark(int)
Bookmark ID.
Default: current bookmark

Examples

0

#1 Let's display a link to edit the bookmark

<?php edit_bookmark_link(); ?>
0

#2 Let's display the edit link with the text "edit link"

And wrap it in the html tag <p>:

<?php edit_bookmark_link( 'edit link', '<p>', '</p>'); ?>

Changelog

Since 2.7.0 Introduced.

edit_bookmark_link() code WP 6.1.1

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;
}