[listdom_cloud
]
This shortcode displays Listdom tags, labels, and other taxonomy types as a cloud structure. It’s fully independent and standalone from the Listdom skin shortcodes.
Shortcode Parameters
This shortcode accepts some parameters:
- taxonomy: Specifies the taxonomy to be used. This can be any of the Listdom valid taxonomies. If not provided, it defaults to the tag taxonomy.
- Accepted values are listdom-category, listdom-location, listdom-label, listdom-tag, and listdom-feature.
- Usage:
[listdom_cloud taxonomy="listdom-category"]
- hide_empty: Determines whether to hide empty items. Use the value “1” to hide and “0” to show.
- Usage:
[listdom_cloud hide_empty="1"]
or[listdom_cloud hide_empty="0"]
- Usage:
- parent: Filters items by their parent ID or name. (Works only for the taxonomies that have hierarchical options.
- Usage:
[listdom_cloud parent="x"]
- Explanation:
parent="0"
: Only top-level parent items are displayed.parent="x"
: Only the child items of the specific parent items with ID or name “x” will be displayed.
- Usage:
- ids: Filters items by their IDs separated with a comma. To find a taxonomy ID follow these steps:
- Navigate to Listings on the left sidebar and click on the taxonomy you want e.g. Categories, Locations, etc. Hover Over/Edit the taxonomy:
- Hover over a taxonomy name or click Edit.
- Look at the URL in your browser’s address bar. You’ll see something like tag_ID=123 or term_id=123. The number 123 is the ID of the listing taxonomy.
- Usage:
[listdom_cloud ids="ID1,ID2,ID3"]
- Navigate to Listings on the left sidebar and click on the taxonomy you want e.g. Categories, Locations, etc. Hover Over/Edit the taxonomy:
- search: Filters items by a search keyword. You can add part of a term name to search between the terms like search=”Hot” and it will return matching terms.
- Usage:
[listdom_cloud search="keyword"]
- Usage:
- orderby: Specifies the order by which to sort items. The default is “name”.
- Name: Sorts items by their name.
- Usage:
[listdom_cloud orderby="name"]
- Usage:
- ID: Sorts items by their ID numbers.
- Usage:
[listdom_cloud orderby="ID"]
- Usage:
- Count: Sorts items by the number of posts assigned to each item.
- Usage:
[listdom_cloud orderby="count"]
- Usage:
- Name: Sorts items by their name.
- order: Specifies the order direction (ascending or descending). The default is “ASC”.
- Usage:
[listdom_cloud order="ASC"]
or[listdom_cloud order="DESC"]
- Usage:
- limit: Limits the number of items displayed. The default is 8.
- Usage:
[listdom_cloud limit="10"]
- Usage: