<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>counter &#8211; Thesis Docs</title>
	<atom:link href="https://diythemes.com/thesis/rtfm/tag/counter/feed/" rel="self" type="application/rss+xml" />
	<link>https://diythemes.com/thesis/rtfm</link>
	<description>Documentation, How-tos, and Best Practices for the Thesis WordPress Theme System</description>
	<lastBuildDate>Sun, 27 Jan 2013 18:31:05 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.1</generator>
	<item>
		<title>Show FeedBurner Counter Below Subscribe Link</title>
		<link>https://diythemes.com/thesis/rtfm/feedburner-counter-subscribe-link/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Tue, 06 Oct 2009 13:54:54 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[count]]></category>
		<category><![CDATA[counter]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[FeedBurner]]></category>
		<category><![CDATA[subscribe]]></category>
		<category><![CDATA[subscribers]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=511</guid>

					<description><![CDATA[How to display a FeedBurner counter below your Subscribe link.]]></description>
										<content:encoded><![CDATA[<p>Place this code in <code>custom_functions.php</code> (replace FEEDNAME with your feed name):</p>
<pre class="php">
function feed_button() {?&gt;
&lt;span class=&quot;feed_count&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/FEEDNAME&quot;&gt;
&lt;img src=&quot;http://feeds.feedburner.com/~fc/FEEDNAME?bg=2361a1&amp;amp;fg=ffffff&amp;amp;anim=0&quot; height=&quot;26&quot; width=&quot;88&quot; alt=&quot;Feedburner feed counter&quot; /&gt;
&lt;/a&gt;
&lt;/span&gt;
&lt;?
}

add_action('thesis_hook_header', 'feed_button');
</pre>
<p>Then, place this code in <code>custom.css</code>:</p>
<pre class="css">
.custom #header { position:relative; }

.custom .feed_count {
  position:absolute;
  right:0;
  top:0.7em;
}
</pre>
<p><em>You can see an example of what this looks like on the <a href="https://diythemes.com/thesis/" title="Thesis Theme for WordPress">Thesis Theme site</a>.</em></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Display a Number for Each Comment</title>
		<link>https://diythemes.com/thesis/rtfm/display-number-comment/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Mon, 04 May 2009 11:50:54 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[counter]]></category>
		<category><![CDATA[number]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=202</guid>

					<description><![CDATA[How to enable the Thesis option for numbered comments on single post pages.]]></description>
										<content:encoded><![CDATA[<p>In the <strong>Design Options</strong> panel, under <em>Comment Options &gt; Comments &gt; Comment Meta</em>, check the “comment numbers” option.</p>
<p>Once that&#8217;s enabled, you can style these with the following in <code>custom.css</code> file (change to suit your requirements):</p>
<pre class="css">
.custom .comment_num {
  float:left;
  padding-right:5px;
}
</pre>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
