Definition:
function get_linkobjects($category = 0, $orderby = 'name', $limit = 0) {}
Gets an array of link objects associated with category n.
Usage:
Parameters
- int $category: The category to use. If no category supplied uses all
- string $orderby: the order to output the links. E.g. ‘id’, ‘name’, ‘url’, ‘description’, or ‘rating’. Or maybe owner. If you start the name with an underscore the order will be reversed. You can also specify ‘rand’ as the order which will return links in a random order.
- int $limit: Limit to X entries. If not specified, all entries are shown.
Source code
function get_linkobjects($category = 0, $orderby = 'name', $limit = 0) { _deprecated_function( __FUNCTION__, '2.1', '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; }
1452
No comments yet... Be the first to leave a reply!