wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
edit_bookmark_link › WordPress Function
Seit2.7.0
Veraltetn/v
› edit_bookmark_link ( $link = '', $before = '', $after = '', $bookmark = null )
| Parameter: (4) |
|
| Definiert in: |
|
| Codex: |
Displays the edit bookmark link anchor content.
Ähnliche Funktionen: get_edit_bookmark_link, get_bookmark, get_bookmark_field, get_bookmarks, edit_tag_link
Quellcode
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;
}