On this page
get_linkobjectsbyname( string $cat_name = "noname", string $orderby = 'name', int $limit = -1 ): array
This function has been deprecated. Use get_bookmarks() instead.
Gets an array of link objects associated with category $cat_name.
Description
$links = get_linkobjectsbyname( ‘fred’ ); foreach ( $links as $link ) { echo ‘
‘; }
See also
Parameters
$cat_namestring Optional-
The category name to use. If no match is found, uses all.
Default'noname'.Default:
"noname" $orderbystring Optional-
The order to output the links. E.g.
'id','name','url','description','rating', or'owner'. Default'name'.
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:
'name' $limitint Optional-
Limit to X entries. If not specified, all entries are shown.
Default:
-1
Return
array
Source
File: wp-includes/deprecated.php. View all references
function get_linkobjectsbyname($cat_name = "noname" , $orderby = 'name', $limit = -1) {
_deprecated_function( __FUNCTION__, '2.1.0', 'get_bookmarks()' );
$cat_id = -1;
$cat = get_term_by('name', $cat_name, 'link_category');
if ( $cat )
$cat_id = $cat->term_id;
return get_linkobjects($cat_id, $orderby, $limit);
}
Related
Uses
| Uses | Description |
|---|---|
| get_linkobjects() wp-includes/deprecated.php | Gets an array of link objects associated with category n. |
| get_term_by() wp-includes/taxonomy.php | Gets all term data from database by term field and 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_bookmarks() |
| 1.0.1 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/get_linkobjectsbyname