How can I show tagged items on my Wordpress site?
Colin Connor avatar
Written by Colin Connor
Updated over a week ago

Looking for Squarespace? Click Here.


If you just want to show items that have a certain tag in your inventory on Goodshuffle Pro, you can...

First, create a new page.

Next, give this page a title. For example, if you want to list all items tagged with 'Weddings' I'd title the page 'Weddings'

Then, I'd add a HTML block.

After, add in this Element:

<gspro-item-list
  tags="wedding"
  size="100"
></gspro-item-list>

Note, you can change the word (or value) after tags="XXX" to be whatever tag you'd like to pull from your inventory in Goodshuffle Pro.

Then, click 'Publish'

Finally, you will see all items with those tags on your site!

Note you can add multiple 'Blocks' to show rows of items tagged with 'Wedding', 'Casino', and so on.

<gspro-item-list
tags="wedding"
size="100"
></gspro-item-list>

<gspro-item-list
tags="casino"
size="100"
></gspro-item-list>




Pro tip: if you would like to eliminate mentions of a specific part of a tag, say 'packages' in 'dining-package', then you can use the following code snippets as examples:

<gspro-item-list tags="dining-table | dining-tables"

search="-packages"

size="100"

</gspro-item-list>

search="-packages"

size="100"

</gspro-item-list>

The code snippets above will tell the page to pull "items that include Dining tags, but do not include mention of Packages.

As a note, ideally, tags should be formatted using 'Dining_package' - this means that it is a unique tag. Utilizing 'dining-packages' will mean the code sees "dining" and "packages" as separate words.

Did this answer your question?