I'm working with AutoFocus Pro and want to add Tweet button code at the bottom of each post ONLY in the Blog category.
This way, only the blog posts get the Tweet button and all other AutoFocus image gallery posts throughout the rest of the site do not.
_________
I found this little code block that drops an hr at the bottom of posts, but I don't know how to limit it to JUST the Blog category:
function divider($content)
{
$content .= "<hr class=\"divider\" />";
return $content;
}
add_filter('the_content', 'divider', 0);
_________
Of course, the tweet button should appear at the bottom of Blog posts both on the Blog category page (with all Blog posts listed) and on the single Blog post pages.