On this page
get_link( int $bookmark_id, string $output = OBJECT, string $filter = 'raw' ): object|array
This function has been deprecated. Use get_bookmark() instead.
Retrieves bookmark data based on ID.
Description
See also
Parameters
$bookmark_idint Required-
ID of link
$outputstring Optional-
Type of output. Accepts OBJECT, ARRAY_N, or ARRAY_A.
Default:
OBJECT $filterstring Optional-
How to filter the link for output. Accepts
'raw','edit','attribute','js','db', or'display'. Default'raw'.Default:
'raw'
Return
object|array Bookmark object or array, depending on the type specified by $output.
Source
File: wp-includes/deprecated.php. View all references
function get_link( $bookmark_id, $output = OBJECT, $filter = 'raw' ) {
_deprecated_function( __FUNCTION__, '2.1.0', 'get_bookmark()' );
return get_bookmark($bookmark_id, $output, $filter);
}
Related
Uses
| Uses | Description |
|---|---|
| get_bookmark() wp-includes/bookmark.php | Retrieves bookmark data. |
| _deprecated_function() wp-includes/functions.php | Marks a function as deprecated and inform when it has been used. |
Changelog
| Version | Description |
|---|---|
| 2.1.0 | Use get_bookmark() |
| 2.0.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/get_link