Gets an array of link objects associated with category n.
Usage:
$links = get_linkobjects(1);
if ($links) {
foreach ($links as $link) {
echo '<li>'.$link->link_name.'<br />'.$link->link_description.'</li>';
}
} Fields are:
$categoryintoptional
$orderbystringoptional
'id', 'name', 'url', 'description', 'rating', or 'owner'. Default 'name'.'rand' as the order will return links in a random order.Default:'name'
$limitintoptional
function get_linkobjects($category = 0, $orderby = 'name', $limit = 0) {
_deprecated_function( __FUNCTION__, '2.1.0', 'get_bookmarks()' );
$links = get_bookmarks( array( 'category' => $category, 'orderby' => $orderby, 'limit' => $limit ) ) ;
$links_array = array();
foreach ($links as $link)
$links_array[] = $link;
return $links_array;
}
| Version | Description |
|---|---|
| 2.1.0 | Use get_bookmarks() |
| 1.0.1 | Introduced. |
© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/get_linkobjects