get_linksbyname_withrating()
Deprecated from version 2.1.0. It is no longer supported and can be removed in future releases. Use get_bookmarks() instead.
Gets the links associated with category 'cat_name' and display rating stars/chars.
No Hooks.
Return
null
. Nothing (null).
Usage
get_linksbyname_withrating($cat_name = "noname", $before = '', $after = '
', $between = " ",;
Notes
- See: get_bookmarks()
Changelog
Since 0.71 | Introduced. |
Deprecated since 2.1.0 | Use get_bookmarks() |
get_linksbyname_withrating() get linksbyname withrating code WP 6.7.1
function get_linksbyname_withrating($cat_name = "noname", $before = '', $after = '<br />', $between = " ", $show_images = true, $orderby = 'id', $show_description = true, $limit = -1, $show_updated = 0) { _deprecated_function( __FUNCTION__, '2.1.0', 'get_bookmarks()' ); get_linksbyname($cat_name, $before, $after, $between, $show_images, $orderby, $show_description, true, $limit, $show_updated); }