Warning: This function has been deprecated. Use get_bookmarks() instead.

get_linkobjects() WordPress Function

The get_linkobjects() function is used to retrieve the links from the WordPress database. The function accepts two parameters: the link category and the order in which to retrieve the links.

get_linkobjects( int $category, string $orderby = 'name', int $limit ) #

Gets an array of link objects associated with category n.


Description

Usage:

$links = get_linkobjects(1);
if ($links) {
    foreach ($links as $link) {
        echo '<li>'.$link->link_name.'<br />'.$link->link_description.'</li>';
    }
}

Fields are:

  • link_id
  • link_url
  • link_name
  • link_image
  • link_target
  • link_category
  • link_description
  • link_visible
  • link_owner
  • link_rating
  • link_updated
  • link_rel
  • link_notes

Top ↑

See also


Top ↑

Parameters

$category

(int)(Optional) The category to use. If no category supplied, uses all. Default 0.

$orderby

(string)(Optional) The order to output the links. E.g. 'id', 'name', 'url', 'description', 'rating', or 'owner'. If you start the name with an underscore, the order will be reversed. Specifying 'rand' as the order will return links in a random order.

Default value: 'name'

$limit

(int)(Optional) Limit to X entries. If not specified, all entries are shown. Default 0.


Top ↑

Return

(array)


Top ↑

Source

File: wp-includes/deprecated.php

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;
}


Top ↑

Changelog

Changelog
VersionDescription
2.1.0Use get_bookmarks()
1.0.1Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More