Hoping somebody knows the trick to this…
I would like my post tag descriptions to be shown with at the yoursite.com/tag/tag-name link. Anyone know the work around for this? As the Travelify theme doesn’t seem to default this option.
Thanks in advance!
]]>I am building a portfolio website for my artwork. I have a menu of pages that hold galleries of my work, and I also want to include a tag cloud of words that describe aspects of the artwork in the galleries. For example, I have artwork using the color “blue” made with “oil” paint, and want to use those descriptions as category options listed in a tag cloud. I’m not sure how I would be able to link the tags to the individual images in the gallery on each page. Is it possible to do this at all using this theme? If not, do you know of another way I can make this? Would I have to make blog posts of each artwork (or a gallery of artwork) with tag descriptions?
I appreciate you help. I love the theme and don’t want to give up on making it work for me!
]]>https://wordpress.stackexchange.com/questions/21234/how-to-enable-all-tag-descriptions-in-loop
$tags = get_the_tags(); // for the specific post
// $tags = get_tags(); // all tags
$html = '<div class="post_tags">';
foreach ( $tags as $tag )
{
$tag_link = get_tag_link( $tag->term_id );
$html .= "Describtion for ".ucfirst( strtolower( $tag->name ) ).": $tag->description";
$html .= "<a href='{$tag_link}' title='{$tag->name} Tag' class='{$tag->slug}'>{$tag->name}</a>";
}
$html .= '</div>';
echo $html;
This is more or less what I want.
BUT…. how can I show this output on the Home Page only?
I assume I need to create a new file?
]]>At the moment we use tags for every artist we feature but for someone who has never heard of “artist a” or “artist b” the tag archives aren’t so helpful. So I’m looking for a wiki-esque system that would allow people to edit the tag descriptions – meaning the aritsts bio could be added and written by the users themselves. Naturally with an admin feature or at least something where I could roll back to a historic version like most wikis. Preferably allowing them to upload photos as well but not a requirement.
Is there a way I could do this?
]]>At the moment we use tags for every artist we feature but for someone who has never heard of “artist a” or “artist b” the tag archives aren’t so helpful. So I’m looking for a wiki-esque system that would allow people to edit the tag descriptions – meaning the aritsts bio could be added and written by the users themselves. Naturally with an admin feature or at least something where I could roll back to a historic version like most wikis. Preferably allowing them to upload photos as well but not a requirement.
Is there a way I could do this?
]]>For example, I’d like to add a description field for each tag, and then create a custom tag template that includes the tag description at the top of the page.
Any suggestions would be appreciated!
]]>