Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Display tags for posts under Work Category? Re: Display tags for posts under Work Category?

#132436
JokerMartini
Participant

@TheDoc

Let me know if this helps.

1. Create a unique array of tag names only found on “posts” in the category “work”

2. Display tags using this loop

if (count($all_tags)) {
foreach ($all_tags as $tag)
{
echo ‘‘ . $tag . ‘‘;
}
} else {
echo ‘No Tags!’;
}

Let me know if that helps explain things.Thank you TheDoc!