<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>WordPress &#8250; Support Topic: auto-increment counter</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support Topic: auto-increment counter</description>
<language>en</language>
<pubDate>Tue, 24 Nov 2009 07:42:02 +0000</pubDate>

<item>
<title>ciuchlux on "auto-increment counter"</title>
<link>http://wordpress.org/support/topic/274911#post-1149497</link>
<pubDate>Fri, 24 Jul 2009 07:54:03 +0000</pubDate>
<dc:creator>ciuchlux</dc:creator>
<guid isPermaLink="false">1149497@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Is it posible to show count from last one ?&#60;br /&#62;
post 11&#60;br /&#62;
post 10&#60;br /&#62;
....
&#60;/p&#62;</description>
</item>
<item>
<title>julianens on "auto-increment counter"</title>
<link>http://wordpress.org/support/topic/274911#post-1088277</link>
<pubDate>Sun, 31 May 2009 22:54:35 +0000</pubDate>
<dc:creator>julianens</dc:creator>
<guid isPermaLink="false">1088277@http://wordpress.org/support/</guid>
<description>&#60;p&#62;oh, i got it now.&#60;/p&#62;
&#60;p&#62;i wrote &#38;lt;div id=&#34;post&#38;lt;?php echo($wp_query-&#38;gt;current_post + 1); ?&#38;gt;&#34;&#38;gt; to the loop and it worked.&#60;/p&#62;
&#60;p&#62;thanks! :)
&#60;/p&#62;</description>
</item>
<item>
<title>julianens on "auto-increment counter"</title>
<link>http://wordpress.org/support/topic/274911#post-1088269</link>
<pubDate>Sun, 31 May 2009 22:39:37 +0000</pubDate>
<dc:creator>julianens</dc:creator>
<guid isPermaLink="false">1088269@http://wordpress.org/support/</guid>
<description>&#60;p&#62;stvwlf,&#60;/p&#62;
&#60;p&#62;i undestand that the &#38;lt;?php the_ID(); ?&#38;gt; tag does the counting automatically.&#60;br /&#62;
but its count is very strange.. cause it goes from 49 on the first post to 43 on the second post.&#60;/p&#62;
&#60;p&#62;what i really need is a simple increasing id number.. starting from 0.&#60;br /&#62;
exactly like this:&#60;br /&#62;
&#38;lt;div id='post0'&#38;gt; for post one (most recent post)&#60;br /&#62;
&#38;lt;div id='post1'&#38;gt; for post two&#60;br /&#62;
...&#60;br /&#62;
until..&#60;br /&#62;
&#38;lt;div id='post9'&#38;gt; for post ten (last post of the page)&#60;/p&#62;
&#60;p&#62;i know that textpattern has a plugin called &#60;a href=&#34;http://vanmelick.com/txp/rvm_counter.php?help&#34;&#62;rvm_counter&#60;/a&#62; that does this like a charm. but I wanted something for wordpress.&#60;/p&#62;
&#60;p&#62;how can I add this on the loop? is that possible on wordpress?&#60;/p&#62;
&#60;p&#62;thanks in advance.
&#60;/p&#62;</description>
</item>
<item>
<title>Shane G on "auto-increment counter"</title>
<link>http://wordpress.org/support/topic/274911#post-1087131</link>
<pubDate>Sat, 30 May 2009 07:09:27 +0000</pubDate>
<dc:creator>Shane G</dc:creator>
<guid isPermaLink="false">1087131@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I personally refer you to go with the statcounter plugin for statistics for your site..you can download it from here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/official-statcounter-plugin-for-wordpress/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/official-statcounter-plugin-for-wordpress/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Shane G.
&#60;/p&#62;</description>
</item>
<item>
<title>stvwlf on "auto-increment counter"</title>
<link>http://wordpress.org/support/topic/274911#post-1086903</link>
<pubDate>Fri, 29 May 2009 23:07:29 +0000</pubDate>
<dc:creator>stvwlf</dc:creator>
<guid isPermaLink="false">1086903@http://wordpress.org/support/</guid>
<description>&#60;p&#62;it's built in&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$wp_query-&#38;gt;post_count&#60;/code&#62;  is the # of posts on the page&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$wp_query-&#38;gt;current_post&#60;/code&#62; is the # of the current post on the page&#60;/p&#62;
&#60;p&#62;current post starts at zero, post_count starts at 1
&#60;/p&#62;</description>
</item>
<item>
<title>julianens on "auto-increment counter"</title>
<link>http://wordpress.org/support/topic/274911#post-1086860</link>
<pubDate>Fri, 29 May 2009 22:07:31 +0000</pubDate>
<dc:creator>julianens</dc:creator>
<guid isPermaLink="false">1086860@http://wordpress.org/support/</guid>
<description>&#60;p&#62;where can I find an auto-increment counter for wordpress?&#60;br /&#62;
I want it to returns a number that is incremented each time this tag is called.&#60;br /&#62;
so that I can count the front-page posts.. identifying them as&#60;br /&#62;
&#38;lt;div id='post1'&#38;gt;&#60;br /&#62;
&#38;lt;div id='post2'&#38;gt;&#60;br /&#62;
&#38;lt;div id='post3'&#38;gt;&#60;br /&#62;
&#38;lt;div id='post4'&#38;gt;&#60;br /&#62;
and so on.. automaticaly..&#60;/p&#62;
&#60;p&#62;how can i do that?&#60;/p&#62;
&#60;p&#62;thanks in advance.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
