hello guys,
Do you know if theres any plugin that sort the tags by category?
For instance: i access the category 'psychology' in my blog, and on sidebar shows only the tags related to the articles in this category.
Thanks in advance!
lucas.
hello guys,
Do you know if theres any plugin that sort the tags by category?
For instance: i access the category 'psychology' in my blog, and on sidebar shows only the tags related to the articles in this category.
Thanks in advance!
lucas.
I think this plugin will help you:
http://wordpress.org/extend/plugins/tdo-tag-fixes/
Thanks Michael, but thats not exactly what I was looking for.
I want the same as this post (http://wordpress.org/support/topic/247862?replies=3), but the answers there didnt help as well.
I am looking for some plugin that shows (in a widget, for instance) the tags available for that category. This will help organizing the tags in a blog that contains a lot of differentes expertises - lots of personal blogs, for example.
Any other suggestion?
Thanks again
Lucas.
hey, michael
forget what i said, this plugin has more that it looks!
as soon as i find the perfect solution for that ill post here.
thanks
Here is the complete solution for me at least:
1-install and activate the tdo-tag-fixes (http://wordpress.org/extend/plugins/tdo-tag-fixes/)
2-put the code on wherever you want to show the tags:
<?php
foreach ((get_the_category()) as $category)
{
$catname = $category->cat_name;
}
echo $catname;
if(function_exists('tdotf_cat_tag_cloud')) {
tdotf_cat_tag_cloud('$catname');
}
?>
any correction or better way to do so please let me know.
thank you
lucas
You must log in to post.