Definition:
function get_links_withrating($category = -1, $before = '', $after = '<br />', $between = " ", $show_images = true,
Gets the links associated with category n and display rating stars/chars.
Parameters
- int $category: The category to use. If no category supplied uses all
- string $before: The html to output before the link
- string $after: The html to output after the link
- string $between: The html to output between the link/image and it’s description. Not used if no image or show_images == true
- bool $show_images: Whether to show images (if defined).
- 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.
- bool $show_description: Whether to show the description if show_images=false/not defined.
- string $limit: Limit to X entries. If not specified, all entries are shown.
- int $show_updated: Whether to show last updated timestamp
Source code
function get_links_withrating($category = -1, $before = '', $after = '<br />', $between = " ", $show_images = true, $orderby = 'id', $show_description = true, $limit = -1, $show_updated = 0) { _deprecated_function( __FUNCTION__, '2.1', 'get_bookmarks()' ); get_links($category, $before, $after, $between, $show_images, $orderby, $show_description, true, $limit, $show_updated); }
1466
No comments yet... Be the first to leave a reply!