<?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 User Favorites: revlimiter</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support User Favorites: revlimiter</description>
<language>en</language>
<pubDate>Tue, 24 Nov 2009 09:06:44 +0000</pubDate>

<item>
<title>revlimiter on ""wp-comments-post.php" using Thickbox"</title>
<link>http://wordpress.org/support/topic/213648#post-886446</link>
<pubDate>Tue, 28 Oct 2008 23:33:45 +0000</pubDate>
<dc:creator>revlimiter</dc:creator>
<guid isPermaLink="false">886446@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hey everyone,&#60;br /&#62;
I posted about this in &#60;a href=&#34;http://wordpress.org/support/topic/201539&#34;&#62;here&#60;/a&#62; but have not heard back...&#60;/p&#62;
&#60;p&#62;Essentially, I am looking to have the &#34;Error: please fill the required fields (name, email).&#34; show up in a Thickbox popup instead of a plain white page (as per the default WP layout).&#60;/p&#62;
&#60;p&#62;This is when a user forgets to fill in required information in the comments form such as their name or their email address.&#60;/p&#62;
&#60;p&#62;Any tips/suggestions are greatly appreciated!&#60;br /&#62;
Warmest Regards,
&#60;/p&#62;</description>
</item>
<item>
<title>revlimiter on "Thickbox wp-comments-post.php Pop-Ups"</title>
<link>http://wordpress.org/support/topic/201539#post-886445</link>
<pubDate>Tue, 28 Oct 2008 23:30:44 +0000</pubDate>
<dc:creator>revlimiter</dc:creator>
<guid isPermaLink="false">886445@http://wordpress.org/support/</guid>
<description>&#60;p&#62;hey everyone,&#60;br /&#62;
just letting you know, i am still looking for a solution on this.  will post again tonight.  anybody have any ideas/suggestions?&#60;/p&#62;
&#60;p&#62;thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>revlimiter on "Thickbox wp-comments-post.php Pop-Ups"</title>
<link>http://wordpress.org/support/topic/201539#post-867221</link>
<pubDate>Thu, 02 Oct 2008 04:53:57 +0000</pubDate>
<dc:creator>revlimiter</dc:creator>
<guid isPermaLink="false">867221@http://wordpress.org/support/</guid>
<description>&#60;p&#62;bumpity bump bump bump&#60;br /&#62;
:)
&#60;/p&#62;</description>
</item>
<item>
<title>revlimiter on "Weird Search Count Issue..."</title>
<link>http://wordpress.org/support/topic/206567#post-867219</link>
<pubDate>Thu, 02 Oct 2008 04:52:45 +0000</pubDate>
<dc:creator>revlimiter</dc:creator>
<guid isPermaLink="false">867219@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Gey whooami,&#60;br /&#62;
Thanks for pointing that out! :-)&#60;/p&#62;
&#60;p&#62;Here is the code for the plugin &#34;Results Count&#34;:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/*
Plugin Name: Results count
Plugin URI: &#60;a href=&#34;http://wordpress.org/extend/plugins/results-count/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/results-count/&#60;/a&#62;
Description: Adds info to search results for how many matches were found
Version: 0.3
Author: Matthew Taylor
Author URI: &#60;a href=&#34;http://www.mtaylor.co.uk&#34; rel=&#34;nofollow&#34;&#62;http://www.mtaylor.co.uk&#60;/a&#62;
*/

### Search results count heading
function wp_searchheader() {

		 if (is_search() &#124;&#124; is_date() &#124;&#124; is_category() &#124;&#124; is_tag()) {
			global $request, $posts_per_page, $wpdb, $paged, $wp_query;

				preg_match(&#38;#39;#FROM (.*) GROUP BY#&#38;#39;, $request, $matches);
				$fromwhere = $matches[1];

				$numposts = $wp_query-&#38;gt;found_posts;

				if (0 &#38;lt; $numposts) $numposts = number_format($numposts);

				if(empty($paged)) {
					$paged = 1;
				}

				$startpost = ($posts_per_page * $paged) - $posts_per_page + 1;

				if (($startpost + $posts_per_page - 1) &#38;gt;= $numposts) {
					$endpost = $numposts;
				} else {
					$endpost = $startpost + $posts_per_page -1;
				}

				$search_terms = get_query_var(&#38;#39;search_terms&#38;#39;);

				if ($posts_per_page!=-1) {
					echo &#38;#39;&#38;lt;!--&#38;lt;p&#38;gt;Showing results &#38;lt;b&#38;gt; &#38;#39;.$startpost. &#38;#39;&#38;lt;/b&#38;gt; - &#38;lt;b&#38;gt;&#38;#39; .$endpost. &#38;#39;&#38;lt;/b&#38;gt; of &#38;lt;b&#38;gt;--&#38;gt;&#38;#39; .$numposts. &#38;#39;&#38;lt;!--&#38;lt;/b&#38;gt; for --&#38;gt;&#38;#39;;
				} else {
					echo &#38;#39;&#38;lt;p&#38;gt;Showing &#38;lt;b&#38;gt;&#38;#39;.$numposts.&#38;#39;&#38;lt;/b&#38;gt; results for &#38;#39;;
				}

				if (is_search()){
					echo &#38;#39;&#38;lt;!--the search terms: &#38;lt;b&#38;gt;--&#38;gt;&#38;#39;;

					for ($i = 0; $i &#38;lt; count($search_terms); $i++){
						echo &#38;#39;&#38;lt;!-- &#38;lt;a href=&#38;quot;index.php?s=&#38;#39;, $search_terms[$i], &#38;#39;&#38;quot; title=&#38;quot;search this site for: &#38;#39;, $search_terms[$i], &#38;#39;&#38;quot;&#38;gt;&#38;#39;, $search_terms[$i], &#38;#39;&#38;lt;/a&#38;gt;--&#38;gt;&#38;#39;;
					}
				}

				if (is_date()){
					$wholedate = (trim(wp_title(&#38;#39;&#38;#39;, FALSE)));
					$dateArray = (explode(&#38;quot; &#38;quot;, $wholedate));
					$date = ($dateArray[2] . &#38;quot;, &#38;quot; . $dateArray[0]);
					echo &#38;#39;&#38;lt;b&#38;gt;&#38;#39;, $date;
				}

				if (is_category()){
					echo &#38;#39;the category &#38;lt;b&#38;gt;&#38;lt;a href=&#38;quot;http://&#38;#39;, $_SERVER[&#38;quot;HTTP_HOST&#38;quot;] . $_SERVER[&#38;quot;REQUEST_URI&#38;quot;], &#38;#39;&#38;quot;&#38;gt;&#38;#39;, single_cat_title(),&#38;#39;&#38;lt;/a&#38;gt;&#38;#39;;
				}

				if (is_tag()){
					echo &#38;#39;the tag &#38;lt;b&#38;gt;&#38;lt;a href=&#38;quot;http://&#38;#39;, $_SERVER[&#38;quot;HTTP_HOST&#38;quot;] . $_SERVER[&#38;quot;REQUEST_URI&#38;quot;], &#38;#39;&#38;quot;&#38;gt;&#38;#39;, single_tag_title(),&#38;#39;&#38;lt;/a&#38;gt;&#38;#39;;
				}

			echo &#38;#39;&#38;lt;!--&#38;lt;/b&#38;gt;.&#38;lt;/p&#38;gt;--&#38;gt;&#38;#39;;

		}
	}
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>whooami on "Weird Search Count Issue..."</title>
<link>http://wordpress.org/support/topic/206567#post-865487</link>
<pubDate>Tue, 30 Sep 2008 06:04:57 +0000</pubDate>
<dc:creator>whooami</dc:creator>
<guid isPermaLink="false">865487@http://wordpress.org/support/</guid>
<description>&#60;p&#62;youre not providing the one impiortant pice of info.&#60;/p&#62;
&#60;p&#62;this:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;wp_searchheader&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;is providing that number. WHAT IS THAT.&#60;/p&#62;
&#60;p&#62;there's a few versions of that search results plugin floating around, i think theres even one on my own site. It would be very useful obviously, if you provided the link to the one you happen to be using.
&#60;/p&#62;</description>
</item>
<item>
<title>revlimiter on "Weird Search Count Issue..."</title>
<link>http://wordpress.org/support/topic/206567#post-865482</link>
<pubDate>Tue, 30 Sep 2008 05:53:09 +0000</pubDate>
<dc:creator>revlimiter</dc:creator>
<guid isPermaLink="false">865482@http://wordpress.org/support/</guid>
<description>&#60;p&#62;bump
&#60;/p&#62;</description>
</item>
<item>
<title>iridiax on "Sidebar Issues"</title>
<link>http://wordpress.org/support/topic/206569#post-862673</link>
<pubDate>Fri, 26 Sep 2008 04:40:17 +0000</pubDate>
<dc:creator>iridiax</dc:creator>
<guid isPermaLink="false">862673@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Date and time:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://codex.wordpress.org/Formatting_Date_and_Time&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Formatting_Date_and_Time&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://us2.php.net/date&#34; rel=&#34;nofollow&#34;&#62;http://us2.php.net/date&#60;/a&#62;&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;Also, I would love to be able to have a maximum character count on the Recent Entry links so that a &#34;...&#34; could appear in the links that are too wide for the design.&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;You can do this sort of thing with &#60;a href=&#34;http://www.tizag.com/phpT/php-string-substr_replace.php&#34;&#62;php substr_replace&#60;/a&#62;.
&#60;/p&#62;</description>
</item>
<item>
<title>revlimiter on "Sidebar Issues"</title>
<link>http://wordpress.org/support/topic/206569#post-862671</link>
<pubDate>Fri, 26 Sep 2008 04:24:20 +0000</pubDate>
<dc:creator>revlimiter</dc:creator>
<guid isPermaLink="false">862671@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hey everyone,&#60;/p&#62;
&#60;p&#62;On my website's blog: &#60;a href=&#34;http://www.kimstewart.ca/blog/&#34; rel=&#34;nofollow&#34;&#62;http://www.kimstewart.ca/blog/&#60;/a&#62;&#60;br /&#62;
I am trying to get my &#34;Recent Entries&#34; on my sidebar to show the dates in this way so that they line up nicely:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;10.28
09.21
09.20
09.10
etc..&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Also, I would love to be able to have a maximum character count on the Recent Entry links so that a &#34;...&#34; could appear in the links that are too wide for the design.  Hope this makes sense!&#60;/p&#62;
&#60;p&#62;Here is my code in sidebar.php:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div id=&#38;quot;sidebar&#38;quot;&#38;gt;
	&#38;lt;ul class=&#38;quot;sidebar_list&#38;quot;&#38;gt;

		&#38;lt;?php if (!function_exists(&#38;#39;dynamic_sidebar&#38;#39;) &#124;&#124; !dynamic_sidebar()) : ?&#38;gt;

		&#38;lt;li class=&#38;quot;widget&#38;quot;&#38;gt;
			&#38;lt;h2&#38;gt;Recent Entries: &#38;lt;a href=&#38;quot;/feed/&#38;quot;&#38;gt;&#38;lt;img src=&#38;quot;/img/gbl/rss.gif&#38;quot; alt=&#38;quot;Subscribe to RSS&#38;quot; title=&#38;quot;Subscribe to RSS&#38;quot; border=&#38;quot;0&#38;quot; class=&#38;quot;rss&#38;quot; /&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/h2&#38;gt;
			&#38;lt;ul class=&#38;quot;sidebar&#38;quot;&#38;gt;
				&#38;lt;?php query_posts(&#38;#39;showposts=10&#38;#39;); ?&#38;gt;
				&#38;lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&#38;gt;

&#38;lt;li&#38;gt;&#38;lt;span class=&#38;quot;recent_date&#38;quot;&#38;gt; &#38;lt;?php the_time(&#38;#39;n.j&#38;#39;) ?&#38;gt; &#38;lt;a&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php the_title() ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/li&#38;gt;
				&#38;lt;?php endwhile; endif; ?&#38;gt;

         &#38;lt;li id=&#38;quot;search&#38;quot;&#38;gt;
           &#38;lt;h2&#38;gt;&#38;lt;?php _e(&#38;#39;Search:&#38;#39;); ?&#38;gt;&#38;lt;/h2&#38;gt;
           &#38;lt;form id=&#38;quot;searchform&#38;quot; method=&#38;quot;get&#38;quot; action=&#38;quot;&#38;lt;?php bloginfo(&#38;#39;home&#38;#39;); ?&#38;gt;&#38;quot;&#38;gt;
            &#38;lt;div&#38;gt;
                &#38;lt;input type=&#38;quot;text&#38;quot; name=&#38;quot;s&#38;quot; id=&#38;quot;s&#38;quot; class=&#38;quot;text_input_small&#38;quot; /&#38;gt;
                &#38;lt;input name=&#38;quot;submit&#38;quot; id=&#38;quot;submit&#38;quot; type=&#38;quot;image&#38;quot; class=&#38;quot;submit_btn&#38;quot; src=&#38;quot;/img/gbl/empty.gif&#38;quot; title=&#38;quot;Submit&#38;quot; alt=&#38;quot;Submit&#38;quot; value=&#38;quot;&#38;lt;?php _e(&#38;#39;Search&#38;#39;); ?&#38;gt;&#38;quot; /&#38;gt;
            &#38;lt;/div&#38;gt;
            &#38;lt;/form&#38;gt;

		&#38;lt;?php if (function_exists(&#38;#39;get_flickrrss&#38;#39;)) { ?&#38;gt;
				&#38;lt;li class=&#38;quot;widget&#38;quot;&#38;gt;
			&#38;lt;h2&#38;gt;&#38;lt;span class=&#38;quot;flickr_blue&#38;quot;&#38;gt;Flick&#38;lt;/span&#38;gt;&#38;lt;span class=&#38;quot;flickr_pink&#38;quot;&#38;gt;r&#38;lt;/span&#38;gt;&#38;lt;/h2&#38;gt;
			&#38;lt;ul class=&#38;quot;flickr_stream&#38;quot;&#38;gt;
				&#38;lt;?php get_flickrrss(); ?&#38;gt;

		&#38;lt;?php } ?&#38;gt;
		&#38;lt;?php endif; ?&#38;gt;

&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>revlimiter on "Weird Search Count Issue..."</title>
<link>http://wordpress.org/support/topic/206567#post-862667</link>
<pubDate>Fri, 26 Sep 2008 04:14:44 +0000</pubDate>
<dc:creator>revlimiter</dc:creator>
<guid isPermaLink="false">862667@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I am trying to figure out why my search results are sometimes showing the incorrect number when doing a search.&#60;br /&#62;
I think it has something to do with Wordpress searching searching for *both* posts and pages, but only showing posts.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.kimstewart.ca/?s=test&#38;#38;submit.x=0&#38;#38;submit.y=0&#38;#38;submit=Search&#34; rel=&#34;nofollow&#34;&#62;http://www.kimstewart.ca/?s=test&#38;#38;submit.x=0&#38;#38;submit.y=0&#38;#38;submit=Search&#60;/a&#62;&#60;br /&#62;
From the link above you can see there are 3 Search Results for &#34;test&#34;, but only 2 show up...&#60;/p&#62;
&#60;p&#62;Here is my code in search.php&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php include_once($_SERVER[&#38;#39;DOCUMENT_ROOT&#38;#39;] . &#38;quot;/inc/php/header.php&#38;quot;);
$postnum = 1;
?&#38;gt;

&#38;lt;div id=&#38;quot;content&#38;quot;&#38;gt;
	&#38;lt;div id=&#38;quot;content_box&#38;quot;&#38;gt;

		&#38;lt;div id=&#38;quot;content&#38;quot; class=&#38;quot;posts&#38;quot;&#38;gt;
        &#38;lt;?php
//Initialize $pagenum
$pagenum = $paged;

//Set 1st page to 1 instead of 0
if($pagenum == &#38;#39;&#38;#39;){$pagenum = 1;}

//Start checking which page is up
if ($pagenum == 1) {

//On 1st page start counting posts from 1
$postnum = 1;
} else {

//On following pages start counting from 11, 21, 31, etc.
$postnum = ($pagenum * 10) - 9;
}
?&#38;gt;

		&#38;lt;?php if (have_posts()) : ?&#38;gt;

			&#38;lt;h2 class=&#38;quot;archive_head&#38;quot;&#38;gt;&#38;lt;?php wp_searchheader()?&#38;gt; Search Results for &#38;lt;em class=&#38;quot;grey&#38;quot;&#38;gt;&#38;quot;&#38;lt;?php the_search_query(); ?&#38;gt;&#38;quot;&#38;lt;/em&#38;gt;&#38;lt;/h2&#38;gt;

			&#38;lt;?php while (have_posts()) : the_post(); ?&#38;gt;
&#38;lt;?php if (is_type_page()) continue; ?&#38;gt;
			&#38;lt;div class=&#38;quot;postnum&#38;quot;&#38;gt;&#38;lt;?php echo $postnum; ?&#38;gt;.&#38;lt;/div&#38;gt;
			&#38;lt;h2 class=&#38;quot;padding&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php the_permalink() ?&#38;gt;&#38;quot; rel=&#38;quot;bookmark&#38;quot; title=&#38;quot;Permanent Link to &#38;lt;?php the_title(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/h2&#38;gt;
			&#38;lt;h4 class=&#38;quot;padding&#38;quot;&#38;gt;&#38;lt;?php the_time(&#38;#39;F jS, Y&#38;#39;) ?&#38;gt;&#38;lt;!-- by &#38;lt;?php the_author() ?&#38;gt; --&#38;gt;&#38;lt;/h4&#38;gt;
			&#38;lt;div class=&#38;quot;entry&#38;quot;&#38;gt;    

&#38;lt;?php // if there&#38;#39;s a img in my custom field
if($value !== &#38;#39;&#38;#39;) { ?&#38;gt;
&#38;lt;img src=&#38;quot;&#38;lt;?php $values = get_post_custom_values(&#38;quot;thumbnail&#38;quot;); echo $values[0]; ?&#38;gt;&#38;quot; class=&#38;quot;results_thumb&#38;quot; /&#38;gt;
&#38;lt;?php } // end if statement
// if there&#38;#39;s no img
else { echo &#38;#39;link of img&#38;#39;; } ?&#38;gt;

&#38;lt;?php the_excerpt() ?&#38;gt;
			&#38;lt;/div&#38;gt;
			&#38;lt;p class=&#38;quot;tagged&#38;quot;&#38;gt;&#38;lt;?php comments_popup_link(&#38;#39;No Comments&#38;#39;, &#38;#39;1 Comment&#38;#39;, &#38;#39;% Comments&#38;#39;); ?&#38;gt; &#38;lt;strong class=&#38;quot;tag&#38;quot;&#38;gt;Tags:&#38;lt;/strong&#38;gt; &#38;lt;?php the_category(&#38;#39; &#38;amp;middot; &#38;#39;) ?&#38;gt;

		&#38;lt;?php $postnum++; ?&#38;gt;
			&#38;lt;?php endwhile; ?&#38;gt;
			&#38;lt;?php if ($postnum&#38;gt;9) { ?&#38;gt;
			&#38;lt;?php include (TEMPLATEPATH . &#38;#39;/navigation.php&#38;#39;); ?&#38;gt;
		&#38;lt;?php } ?&#38;gt;
		&#38;lt;?php else : ?&#38;gt;

			&#38;lt;h2 class=&#38;quot;page_header&#38;quot;&#38;gt;No Search Results for &#38;lt;em class=&#38;quot;grey&#38;quot;&#38;gt;&#38;quot;&#38;lt;?php the_search_query(); ?&#38;gt;&#38;quot;&#38;lt;/em&#38;gt;&#38;lt;/h2&#38;gt;
			&#38;lt;div class=&#38;quot;entry&#38;quot;&#38;gt;
				&#38;lt;!--&#38;lt;?php include (TEMPLATEPATH . &#38;#39;/searchform.php&#38;#39;); ?&#38;gt;--&#38;gt;
			&#38;lt;/div&#38;gt;
		&#38;lt;?php endif; ?&#38;gt;

		&#38;lt;/div&#38;gt;

		&#38;lt;?php get_sidebar(); ?&#38;gt;

	&#38;lt;/div&#38;gt;
&#38;lt;/div&#38;gt;

&#38;lt;?php include_once($_SERVER[&#38;#39;DOCUMENT_ROOT&#38;#39;] . &#38;quot;/inc/php/footer.php&#38;quot;); ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>revlimiter on "Pagination Bar"</title>
<link>http://wordpress.org/support/topic/204431#post-862647</link>
<pubDate>Fri, 26 Sep 2008 03:47:03 +0000</pubDate>
<dc:creator>revlimiter</dc:creator>
<guid isPermaLink="false">862647@http://wordpress.org/support/</guid>
<description>&#60;p&#62;hey chad,&#60;br /&#62;
thanks for the code!  i actually managed to get it to work using $postnum instead of $x&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php if ($postnum&#38;gt;9) { ?&#38;gt;
&#38;lt;?php include (TEMPLATEPATH . &#38;#39;/navigation.php&#38;#39;); ?&#38;gt;
&#38;lt;?php } ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;cheers,
&#60;/p&#62;</description>
</item>
<item>
<title>chad@maifith.com on "Pagination Bar"</title>
<link>http://wordpress.org/support/topic/204431#post-859386</link>
<pubDate>Mon, 22 Sep 2008 17:32:14 +0000</pubDate>
<dc:creator>chad@maifith.com</dc:creator>
<guid isPermaLink="false">859386@http://wordpress.org/support/</guid>
<description>&#60;p&#62;You could do a simple $x count.&#60;/p&#62;
&#60;p&#62;Use something like &#60;code&#62;$x = 0;&#60;/code&#62;&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php $x = 0; while have_posts() : the_post() 

 ...
$x++;
endwhile; ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;then&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php if ($x&#38;gt;9) { ?&#38;gt;
Navigation bar code here
&#38;lt;?php } ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That should work how you want it to.
&#60;/p&#62;</description>
</item>
<item>
<title>revlimiter on "Thickbox wp-comments-post.php Pop-Ups"</title>
<link>http://wordpress.org/support/topic/201539#post-856882</link>
<pubDate>Fri, 19 Sep 2008 05:42:44 +0000</pubDate>
<dc:creator>revlimiter</dc:creator>
<guid isPermaLink="false">856882@http://wordpress.org/support/</guid>
<description>&#60;p&#62;bump...
&#60;/p&#62;</description>
</item>
<item>
<title>revlimiter on "Gravatar Not Working"</title>
<link>http://wordpress.org/support/topic/204752#post-856880</link>
<pubDate>Fri, 19 Sep 2008 05:39:14 +0000</pubDate>
<dc:creator>revlimiter</dc:creator>
<guid isPermaLink="false">856880@http://wordpress.org/support/</guid>
<description>&#60;p&#62;bump...
&#60;/p&#62;</description>
</item>
<item>
<title>revlimiter on "Gravatar Not Working"</title>
<link>http://wordpress.org/support/topic/204752#post-856040</link>
<pubDate>Thu, 18 Sep 2008 04:42:12 +0000</pubDate>
<dc:creator>revlimiter</dc:creator>
<guid isPermaLink="false">856040@http://wordpress.org/support/</guid>
<description>&#60;p&#62;This is very strange...&#60;br /&#62;
On my comments section of &#60;a href=&#34;http://www.kimstewart.ca/blog/the-power-of-compounding/#comment-7&#34; rel=&#34;nofollow&#34;&#62;http://www.kimstewart.ca/blog/the-power-of-compounding/#comment-7&#60;/a&#62; it shows my WordPress &#60;a href=&#34;http://www.gravatar.com/avatar/58e371eb6f1f16a80feacc949997eaef?s=16&#38;#38;d=http%3A%2F%2Fwww.kimstewart.ca%2Fimg%2Fgbl%2Favatar.gif&#38;#38;r=G&#34;&#62;Gravatar&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;But the comment above does not show my custom Gravatar...&#60;br /&#62;
&#60;a href=&#34;http://www.kimstewart.ca/blog/the-power-of-compounding/#comment-5&#34; rel=&#34;nofollow&#34;&#62;http://www.kimstewart.ca/blog/the-power-of-compounding/#comment-5&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;It is using the exact same email address and exact same website.&#60;br /&#62;
Any ideas?
&#60;/p&#62;</description>
</item>
<item>
<title>revlimiter on "Thickbox wp-comments-post.php Pop-Ups"</title>
<link>http://wordpress.org/support/topic/201539#post-855041</link>
<pubDate>Wed, 17 Sep 2008 01:08:12 +0000</pubDate>
<dc:creator>revlimiter</dc:creator>
<guid isPermaLink="false">855041@http://wordpress.org/support/</guid>
<description>&#60;p&#62;bump
&#60;/p&#62;</description>
</item>
<item>
<title>revlimiter on "Pagination Bar"</title>
<link>http://wordpress.org/support/topic/204431#post-854969</link>
<pubDate>Tue, 16 Sep 2008 23:15:14 +0000</pubDate>
<dc:creator>revlimiter</dc:creator>
<guid isPermaLink="false">854969@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I would prefer that the pagination bar does not display (at the bottom) for pages that return 9 or less search results.  Here is an example of what I am talking about:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.kimstewart.ca/?s=test&#38;#38;submit.x=31&#38;#38;submit.y=13&#38;#38;submit=Search&#34; rel=&#34;nofollow&#34;&#62;http://www.kimstewart.ca/?s=test&#38;#38;submit.x=31&#38;#38;submit.y=13&#38;#38;submit=Search&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Does anybody know the PHP code to do this?&#60;br /&#62;
&#34;&#38;lt;?php if &#38;gt;9 posts&#34;...&#34;return null ?&#38;gt;&#34; lol&#60;/p&#62;
&#60;p&#62;Any help is greatly appreciated!! :)&#60;br /&#62;
Cheers,
&#60;/p&#62;</description>
</item>
<item>
<title>revlimiter on "Wordpress Search Results Count"</title>
<link>http://wordpress.org/support/topic/204429#post-854963</link>
<pubDate>Tue, 16 Sep 2008 23:09:44 +0000</pubDate>
<dc:creator>revlimiter</dc:creator>
<guid isPermaLink="false">854963@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I am wondering how to fix my WordPress count (I am currently running Wordpress 2.6.2)&#60;br /&#62;
As you can see, the numbers do not match when searching for content on &#60;a href=&#34;http://www.kimstewart.ca/?s=test&#38;#38;submit.x=31&#38;#38;submit.y=13&#38;#38;submit=Search&#34; rel=&#34;nofollow&#34;&#62;http://www.kimstewart.ca/?s=test&#38;#38;submit.x=31&#38;#38;submit.y=13&#38;#38;submit=Search&#60;/a&#62;&#60;br /&#62;
I believe that this is because the search is only going through blog posts, and because pages have been turned off, it still counts them as a search result (without showing them on the search results page).&#60;/p&#62;
&#60;p&#62;Anyways, quite the predicament!&#60;br /&#62;
Any ideas with how to fix? :)&#60;/p&#62;
&#60;p&#62;Cheers,
&#60;/p&#62;</description>
</item>
<item>
<title>revlimiter on "Thickbox wp-comments-post.php Pop-Ups"</title>
<link>http://wordpress.org/support/topic/201539#post-846186</link>
<pubDate>Fri, 05 Sep 2008 22:33:26 +0000</pubDate>
<dc:creator>revlimiter</dc:creator>
<guid isPermaLink="false">846186@http://wordpress.org/support/</guid>
<description>&#60;p&#62;bump
&#60;/p&#62;</description>
</item>
<item>
<title>revlimiter on "Removing navigation div from 1 page search results"</title>
<link>http://wordpress.org/support/topic/201818#post-846180</link>
<pubDate>Fri, 05 Sep 2008 22:24:37 +0000</pubDate>
<dc:creator>revlimiter</dc:creator>
<guid isPermaLink="false">846180@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hey everyone,&#60;br /&#62;
I am wondering how to remove the navigation div from the bottom of 1 page search results.  Here is an example of what I am talking about:&#60;br /&#62;
&#60;a href=&#34;http://www.kimstewart.ca/?s=test&#38;#38;submit.x=0&#38;#38;submit.y=0&#38;#38;submit=Search&#34; rel=&#34;nofollow&#34;&#62;http://www.kimstewart.ca/?s=test&#38;#38;submit.x=0&#38;#38;submit.y=0&#38;#38;submit=Search&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Because there is no pagination, it seems kinda pointless. :)&#60;/p&#62;
&#60;p&#62;Any advice is greatly appreciated!&#60;br /&#62;
Cheers,
&#60;/p&#62;</description>
</item>
<item>
<title>revlimiter on "Thickbox wp-comments-post.php Pop-Ups"</title>
<link>http://wordpress.org/support/topic/201539#post-845327</link>
<pubDate>Thu, 04 Sep 2008 20:23:31 +0000</pubDate>
<dc:creator>revlimiter</dc:creator>
<guid isPermaLink="false">845327@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hey everyone,&#60;br /&#62;
I am using &#60;a href=&#34;http://jquery.com/demo/thickbox/&#34;&#62;thickbox&#60;/a&#62; on my website, &#60;a href=&#34;http://www.kimstewart.ca,&#34; rel=&#34;nofollow&#34;&#62;www.kimstewart.ca,&#60;/a&#62; and I am looking to make use of it with WordPress functionality.&#60;/p&#62;
&#60;p&#62;What I mean by this is when a user tries to fill out a &#60;a href=&#34;http://www.kimstewart.ca/blog/hostgator-web-hosting/&#34;&#62;comment form&#60;/a&#62; at the bottom without entering in their name or email address, instead of going to &#60;a href=&#34;http://www.kimstewart.ca/wp-comments-post.php&#34; rel=&#34;nofollow&#34;&#62;http://www.kimstewart.ca/wp-comments-post.php&#60;/a&#62; and having a rather empty page say &#34;Error: please enter a valid email address&#34;, I would like thickbox to display this warning instead!&#60;/p&#62;
&#60;p&#62;Any ideas on how to implement?&#60;/p&#62;
&#60;p&#62;Cheers,
&#60;/p&#62;</description>
</item>

</channel>
</rss>
