get_links()
get_links(
mixed $category = -1,
mixed $before = '',
mixed $after = '<br />',
mixed $between = ' ',
mixed $show_images = true,
mixed $orderby = 'name',
mixed $show_description = true,
mixed $show_rating = false,
mixed $limit = -1,
mixed $show_updated = 1,
mixed $display = true
) Gets the links associated with category by ID.
Parameters 5 required
| Name / Type | Description |
|---|---|
| int | $category Optional. The category to use. If no category supplied uses all. Default 0. Required |
| $before string | Optional. The HTML to output before the link. Default empty. |
| $after string | Optional. The HTML to output after the link. Default '<br />'. |
| string | $between Optional. The HTML to output between the link/image and its description. Not used if no image or $show_images is true. Default ' '. Required |
| $show_images bool | Optional. Whether to show images (if defined). Default true. |
| string | $orderby 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. Required |
| bool | $show_description Optional. Whether to show the description if show_images=false/not defined. Default true. Required |
| $show_rating bool | Optional. Show rating stars/chars. Default false. |
| int | $limit Optional. Limit to X entries. If not specified, all entries are shown. Default -1. Required |
| $show_updated int | Optional. Whether to show last updated timestamp. Default 1. |
| $display bool | Whether to display the results, or return them instead. |