Show FeedBurner Counter Below Subscribe Link

This document is deprecated! The information on this page refers to a Thesis version that is now obsolete. Please visit the Thesis Docs for current documentation.

Place this code in custom_functions.php (replace FEEDNAME with your feed name):

function feed_button() {?>
<span class="feed_count">
<a href="http://feeds.feedburner.com/FEEDNAME">
<img src="http://feeds.feedburner.com/~fc/FEEDNAME?bg=2361a1&amp;fg=ffffff&amp;anim=0" height="26" width="88" alt="Feedburner feed counter" />
</a>
</span>
<?
}

add_action('thesis_hook_header', 'feed_button');

Then, place this code in custom.css:

.custom #header { position:relative; }

.custom .feed_count {
  position:absolute;
  right:0;
  top:0.7em;
}

You can see an example of what this looks like on the Thesis Theme site.