<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Kommentare zu: 5 Tipps zum Einsatz des Plugins WP-PageNavi</title>
	<atom:link href="http://www.onlinecasinodemar.com/wordpress/tipps/plugins/5-tipps-zum-einsatz-des-plugins-wp-pagenavi/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.onlinecasinodemar.com/wordpress/tipps/plugins/5-tipps-zum-einsatz-des-plugins-wp-pagenavi/</link>
	<description>WordPress Themes &#38; Webdesign</description>
	<lastBuildDate>Mon, 26 Sep 2011 21:21:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<meta name="generator" content="webdemar 3.0" />
	<item>
		<title>Von: Seo Bunny</title>
		<link>http://www.onlinecasinodemar.com/wordpress/tipps/plugins/5-tipps-zum-einsatz-des-plugins-wp-pagenavi/#comment-5299</link>
		<dc:creator>Seo Bunny</dc:creator>
		<pubDate>Wed, 15 Dec 2010 15:48:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.onlinecasinodemar.com/?p=1575#comment-5299</guid>
		<description>Halloooooooooo

Hat alles wunderbar funktioniert! Danke!</description>
		<content:encoded><![CDATA[<p>Halloooooooooo</p>
<p>Hat alles wunderbar funktioniert! Danke!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Heenri</title>
		<link>http://www.onlinecasinodemar.com/wordpress/tipps/plugins/5-tipps-zum-einsatz-des-plugins-wp-pagenavi/#comment-4911</link>
		<dc:creator>Heenri</dc:creator>
		<pubDate>Sun, 18 Apr 2010 12:04:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.onlinecasinodemar.com/?p=1575#comment-4911</guid>
		<description>Geiler Post. Vielen Dank. Das Plugin ist echt klasse und dank dir jetzt sowieso!!!</description>
		<content:encoded><![CDATA[<p>Geiler Post. Vielen Dank. Das Plugin ist echt klasse und dank dir jetzt sowieso!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Gerd</title>
		<link>http://www.onlinecasinodemar.com/wordpress/tipps/plugins/5-tipps-zum-einsatz-des-plugins-wp-pagenavi/#comment-4895</link>
		<dc:creator>Gerd</dc:creator>
		<pubDate>Sat, 10 Apr 2010 02:05:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.onlinecasinodemar.com/?p=1575#comment-4895</guid>
		<description>Danke f&#252;r den Tipp &lt;a href=&quot;//miki-design.de”&quot; rel=&quot;nofollow&quot;&gt;:)&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Danke f&#252;r den Tipp <a href="//miki-design.de”" rel="nofollow"> <img src='http://www.onlinecasinodemar.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Ralf</title>
		<link>http://www.onlinecasinodemar.com/wordpress/tipps/plugins/5-tipps-zum-einsatz-des-plugins-wp-pagenavi/#comment-4856</link>
		<dc:creator>Ralf</dc:creator>
		<pubDate>Tue, 09 Mar 2010 06:15:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.onlinecasinodemar.com/?p=1575#comment-4856</guid>
		<description>Das ganze funktioniert auch OHNE Plugin!
CUSTUM FUNCTIONS.php:

&lt;pre&gt;&lt;code&gt;/* NUMBERED NAV MENU */
function numbered_page_nav($prelabel = &#039;&#039;, $nxtlabel = &#039;&#039;, $pages_to_show = 8, $always_show = false) {
	global $request, $posts_per_page, $wpdb, $paged;

	$custom_range = round($pages_to_show/2);
	if (!is_single()) {
		if(!is_category()) {
			preg_match(&#039;#FROM\s(.*)\sORDER BY#siU&#039;, $request, $matches);
		}
		else {
			preg_match(&#039;#FROM\s(.*)\sGROUP BY#siU&#039;, $request, $matches);
		}
		$blog_post_count = $matches[1];
		$numposts = $wpdb-&gt;get_var(&quot;SELECT COUNT(DISTINCT ID) FROM $blog_post_count&quot;);
		$max_page = ceil($numposts /$posts_per_page);
		if(empty($paged)) {
			$paged = 1;
		}
		if($max_page &gt; 1 &#124;&#124; $always_show) {
			echo &quot;Page $paged of $max_page&quot;;
			if ($paged &gt;= ($pages_to_show-2)) {
				echo &#039;&lt;a href=&quot;&#039;.get_pagenum_link().&#039;&quot; rel=&quot;nofollow&quot;&gt;1&lt;/a&gt;... &#039;;
			}
			for($i = $paged - $custom_range; $i = 1 &amp;&amp; $i &lt;= $max_page) {
					if($i == $paged) {
						echo &quot;$i&quot;;
					}
					else {
						echo &#039; &lt;a href=&quot;&#039;.get_pagenum_link($i).&#039;&quot; rel=&quot;nofollow&quot;&gt;&#039;.$i.&#039;&lt;/a&gt; &#039;;
					}
				}
			}
			if (($paged+$custom_range) &lt; ($max_page)) {
				echo &#039; ...&lt;a href=&quot;&#039;.get_pagenum_link($max_page).&#039;&quot; rel=&quot;nofollow&quot;&gt;&#039;.$max_page.&#039;&lt;/a&gt;&#039;;
			}
			echo &quot;&quot;;
		}
	}
}
remove_action(&#039;thesis_hook_after_content&#039;, &#039;thesis_post_navigation&#039;);&lt;/code&gt;&lt;/pre&gt;

CSS:

&lt;pre&gt;&lt;code&gt;/* NUMBERED PAGE NAV */
.page-nav { font-size: 1.35em; font-weight: bold; margin: 1em 0; padding: 0; overflow: hidden; }
.page-nav-intro { float: left; padding: .3em .5em; margin: 0 1em 1em 0; background: #ffffff; border: .1em solid #ccc; }
.page-number { float: left; padding: .3em .5em; margin: 0 .2em; background: #fff; border: .1em solid #ccc;  }
.current-page-number { float: left; padding: .3em .5em; margin: 0 .2em; background: #ffffff; border: .1em solid #ccc; }&lt;/code&gt;&lt;/pre&gt;

Das ganze sieht auch wesentlich sch&#246;ner aus als dieses Plugin.
Hier kann man es sehen:
http://www.alanbangs.de/</description>
		<content:encoded><![CDATA[<p>Das ganze funktioniert auch OHNE Plugin!<br />
CUSTUM FUNCTIONS.php:</p>
<pre><code>/* NUMBERED NAV MENU */
function numbered_page_nav($prelabel = '', $nxtlabel = '', $pages_to_show = 8, $always_show = false) {
	global $request, $posts_per_page, $wpdb, $paged;

	$custom_range = round($pages_to_show/2);
	if (!is_single()) {
		if(!is_category()) {
			preg_match('#FROM\s(.*)\sORDER BY#siU', $request, $matches);
		}
		else {
			preg_match('#FROM\s(.*)\sGROUP BY#siU', $request, $matches);
		}
		$blog_post_count = $matches[1];
		$numposts = $wpdb-&gt;get_var("SELECT COUNT(DISTINCT ID) FROM $blog_post_count");
		$max_page = ceil($numposts /$posts_per_page);
		if(empty($paged)) {
			$paged = 1;
		}
		if($max_page &gt; 1 || $always_show) {
			echo "Page $paged of $max_page";
			if ($paged &gt;= ($pages_to_show-2)) {
				echo '<a href="'.get_pagenum_link().'" rel="nofollow">1</a>... ';
			}
			for($i = $paged - $custom_range; $i = 1 &amp;&amp; $i &lt;= $max_page) {
					if($i == $paged) {
						echo &quot;$i";
					}
					else {
						echo ' <a href="'.get_pagenum_link($i).'" rel="nofollow">'.$i.'</a> ';
					}
				}
			}
			if (($paged+$custom_range) &lt; ($max_page)) {
				echo &#039; ...<a href="'.get_pagenum_link($max_page).'" rel="nofollow">'.$max_page.'</a>';
			}
			echo "";
		}
	}
}
remove_action('thesis_hook_after_content', 'thesis_post_navigation');</code></pre>
<p>CSS:</p>
<pre><code>/* NUMBERED PAGE NAV */
.page-nav { font-size: 1.35em; font-weight: bold; margin: 1em 0; padding: 0; overflow: hidden; }
.page-nav-intro { float: left; padding: .3em .5em; margin: 0 1em 1em 0; background: #ffffff; border: .1em solid #ccc; }
.page-number { float: left; padding: .3em .5em; margin: 0 .2em; background: #fff; border: .1em solid #ccc;  }
.current-page-number { float: left; padding: .3em .5em; margin: 0 .2em; background: #ffffff; border: .1em solid #ccc; }</code></pre>
<p>Das ganze sieht auch wesentlich sch&#246;ner aus als dieses Plugin.<br />
Hier kann man es sehen:<br />
<a href="http://www.alanbangs.de/" rel="nofollow">http://www.alanbangs.de/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Fabian Knopf</title>
		<link>http://www.onlinecasinodemar.com/wordpress/tipps/plugins/5-tipps-zum-einsatz-des-plugins-wp-pagenavi/#comment-4812</link>
		<dc:creator>Fabian Knopf</dc:creator>
		<pubDate>Tue, 02 Feb 2010 16:55:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.onlinecasinodemar.com/?p=1575#comment-4812</guid>
		<description>Vielen Dank f&#252;r diesen Post!</description>
		<content:encoded><![CDATA[<p>Vielen Dank f&#252;r diesen Post!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Nils</title>
		<link>http://www.onlinecasinodemar.com/wordpress/tipps/plugins/5-tipps-zum-einsatz-des-plugins-wp-pagenavi/#comment-4763</link>
		<dc:creator>Nils</dc:creator>
		<pubDate>Sun, 13 Dec 2009 15:36:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.onlinecasinodemar.com/?p=1575#comment-4763</guid>
		<description>Moin, habe gerade deine Tipps befolgt. Lief alles wunderbar. Vielen Dank f&#252;r den Artikel.
Nils</description>
		<content:encoded><![CDATA[<p>Moin, habe gerade deine Tipps befolgt. Lief alles wunderbar. Vielen Dank f&#252;r den Artikel.<br />
Nils</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Jan</title>
		<link>http://www.onlinecasinodemar.com/wordpress/tipps/plugins/5-tipps-zum-einsatz-des-plugins-wp-pagenavi/#comment-4760</link>
		<dc:creator>Jan</dc:creator>
		<pubDate>Thu, 10 Dec 2009 08:41:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.onlinecasinodemar.com/?p=1575#comment-4760</guid>
		<description>Danke f&#252;r die gut geschriebenen Infos. Experimentiere gerade mit diesem Plugin. Leider klappts es noch nicht so ;-) Es sind 3 Seiten vorhanden, aber egal auf welche Seite ich wechsele, als aktive (Current) Seite ist immer die Seite 1 markiert :-(. Irgendwo muss da bei mir ein Fehler sein.</description>
		<content:encoded><![CDATA[<p>Danke f&#252;r die gut geschriebenen Infos. Experimentiere gerade mit diesem Plugin. Leider klappts es noch nicht so <img src='http://www.onlinecasinodemar.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  Es sind 3 Seiten vorhanden, aber egal auf welche Seite ich wechsele, als aktive (Current) Seite ist immer die Seite 1 markiert <img src='http://www.onlinecasinodemar.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> . Irgendwo muss da bei mir ein Fehler sein.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: KChristoph</title>
		<link>http://www.onlinecasinodemar.com/wordpress/tipps/plugins/5-tipps-zum-einsatz-des-plugins-wp-pagenavi/#comment-4745</link>
		<dc:creator>KChristoph</dc:creator>
		<pubDate>Fri, 27 Nov 2009 11:02:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.onlinecasinodemar.com/?p=1575#comment-4745</guid>
		<description>Sch&#246;n, die angebotenen Themen. Ich werde f&#252;r meine geplante Umstellung all&#039; meiner kleinen Gebilde in Ruhe schauen. Monatelang habe ich nichts passendes gefunden, frisch und klar, jetzt kommen sehr viele auf mich zu ...</description>
		<content:encoded><![CDATA[<p>Sch&#246;n, die angebotenen Themen. Ich werde f&#252;r meine geplante Umstellung all&#8217; meiner kleinen Gebilde in Ruhe schauen. Monatelang habe ich nichts passendes gefunden, frisch und klar, jetzt kommen sehr viele auf mich zu &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Simon [webdemar]</title>
		<link>http://www.onlinecasinodemar.com/wordpress/tipps/plugins/5-tipps-zum-einsatz-des-plugins-wp-pagenavi/#comment-4744</link>
		<dc:creator>Simon [webdemar]</dc:creator>
		<pubDate>Fri, 27 Nov 2009 10:29:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.onlinecasinodemar.com/?p=1575#comment-4744</guid>
		<description>Vielen Dank f&#252;r den Hinweis, Andy! Habe ich ausgebessert.</description>
		<content:encoded><![CDATA[<p>Vielen Dank f&#252;r den Hinweis, Andy! Habe ich ausgebessert.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Andy</title>
		<link>http://www.onlinecasinodemar.com/wordpress/tipps/plugins/5-tipps-zum-einsatz-des-plugins-wp-pagenavi/#comment-4743</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Fri, 27 Nov 2009 10:23:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.onlinecasinodemar.com/?p=1575#comment-4743</guid>
		<description>Klasse TIP! Lese &#246;fter dein Feed und hab schon das eine oder andere mal was brauchen k&#246;nnen. Oben hast du nen kleinen Fehler &quot;&lt;??php&quot; zwei mal. Nicht das jemand Probleme hat beim kopieren!
besten Gru&#223; Andy</description>
		<content:encoded><![CDATA[<p>Klasse TIP! Lese &#246;fter dein Feed und hab schon das eine oder andere mal was brauchen k&#246;nnen. Oben hast du nen kleinen Fehler &#8220;&lt;??php&quot; zwei mal. Nicht das jemand Probleme hat beim kopieren!<br />
besten Gru&#223; Andy</p>
]]></content:encoded>
	</item>
</channel>
</rss>

