get_edit_bookmark_link()
Displays the edit bookmark link.
Хуки из функции
Возвращает
Строку|null
. The edit bookmark link URL.
Использование
get_edit_bookmark_link( $link );
- $link(int|stdClass)
- Bookmark ID.
По умолчанию: ID of the current bookmark
Список изменений
С версии 2.7.0 | Введена. |
Код get_edit_bookmark_link() get edit bookmark link WP 6.7.1
function get_edit_bookmark_link( $link = 0 ) { $link = get_bookmark( $link ); if ( ! current_user_can( 'manage_links' ) ) { return; } $location = admin_url( 'link.php?action=edit&link_id=' ) . $link->link_id; /** * Filters the bookmark edit link. * * @since 2.7.0 * * @param string $location The edit link. * @param int $link_id Bookmark ID. */ return apply_filters( 'get_edit_bookmark_link', $location, $link->link_id ); }