Shortcode
[tag_groups_info]
Example
[tag_groups_info group_id=3 info=label]
Data Types
- string: A text. For identifiers that won’t be visible to visitors you often have to replace spaces with _ or -. If the string contains spaces, you need to wrap it in quotes.
- integer: A number without decimal places.
- 0 or 1: 0 turns the feature off and 1 on.
Parameters
group_id
Determines which groups to display. If you select more than one group, the result will be displayed in a table.
accepted values | default | example shortcode |
---|---|---|
One group ID, a comma-separated list of IDs or the keyword “all” | all | group_id=1,5,6 |
taxonomy
Restrict the information only to these taxonomies. Available are only taxonomies that have been activated in the Settings.
accepted values | default | example shortcode |
---|---|---|
comma-separated list of taxonomy names | Taxonomies selected in the settings under “Basics”. | taxonomy=post_tag,product_tag |
html_id
Value for id in the enclosing <table>, <span> or <a> element.
accepted values | default | example shortcode |
---|---|---|
string | empty | html_id=“my_info_div” |
html_class
Value for class in the enclosing <table>, <span> or <a> element.
accepted values | default | example shortcode |
---|---|---|
string | empty | html_class=“make-it-count” |
info
Determines which kind of information to display.
accepted values | default | example shortcode |
---|---|---|
string, one of the options below | "number_of_tags" | info=label |
Possible values
value | description |
---|---|
number_of_tags | Shows the number of assigned tags. For a single tag group, the output is only a number. For multiple tag groups, the output is a table with the group names on the left side. |
label | Shows the label (name) of this group, or a table of group names for multiple groups. |
link (since 1.38.0) (only in the premium version) | Shows the label(s) with a link. The link can be defined with the link_pattern parameter. |
link_pattern
Defines the link when using the info parameter with “link”. This way you can link to pages that contain related information or the tags of a group. The pages need to be generated manually.
Available are two placeholders: “{id}” (tag group ID) and “{slug}” (a slug generated from the group name). The link pattern is always relative to the site URL. The final link is an absolute URL.
accepted values | default | example shortcode |
---|---|---|
string | “{slug}” | link_pattern=/group-tags/{slug} |
target
Defines the HTML “target” attribute when using the info parameter with “link”.
accepted values | default | example shortcode |
---|---|---|
string | “_self” | target="_blank" |