<?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 für webdemar.com</title>
	<atom:link href="http://webdemar.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://webdemar.com</link>
	<description>WordPress Theme Blog</description>
	<lastBuildDate>Wed, 10 Mar 2010 08:37:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Kommentar zu Display Future Posts in Your WordPress Theme von Andrej</title>
		<link>http://webdemar.com/wordpress/display-future-posts-in-your-wordpress-theme/#comment-4859</link>
		<dc:creator>Andrej</dc:creator>
		<pubDate>Wed, 10 Mar 2010 08:37:03 +0000</pubDate>
		<guid isPermaLink="false">http://webdemar.com/?p=202#comment-4859</guid>
		<description>Thank you. I however ran into a problem I can&#039;t solve. I can only access future posts when logged in. When a guest user comes he can only access Past posts, can see the list of future posts but the future posts appear as 404 to him. Any suggestions?</description>
		<content:encoded><![CDATA[<p>Thank you. I however ran into a problem I can&#8217;t solve. I can only access future posts when logged in. When a guest user comes he can only access Past posts, can see the list of future posts but the future posts appear as 404 to him. Any suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Free WordPress-Theme Mimbo 3.0 ver&#246;ffentlicht von Simon [webdemar]</title>
		<link>http://webdemar.com/wordpress/free-wordpress-theme-mimbo-30-veroeffentlicht/#comment-4858</link>
		<dc:creator>Simon [webdemar]</dc:creator>
		<pubDate>Tue, 09 Mar 2010 16:36:34 +0000</pubDate>
		<guid isPermaLink="false">http://webdemar.com/?p=653#comment-4858</guid>
		<description>Hallo Bernd,
das erz&#228;hle bitte dem Theme-Autor ;-)</description>
		<content:encoded><![CDATA[<p>Hallo Bernd,<br />
das erz&#228;hle bitte dem Theme-Autor <img src='http://webdemar.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Tutorial: jQuery Dropdown Men&#252; f&#252;r WordPress von 2nuts</title>
		<link>http://webdemar.com/wordpress/tutorial-jquery-dropdown-menue-fuer-wordpress/#comment-4857</link>
		<dc:creator>2nuts</dc:creator>
		<pubDate>Tue, 09 Mar 2010 16:34:35 +0000</pubDate>
		<guid isPermaLink="false">http://webdemar.com/?p=698#comment-4857</guid>
		<description>hallo.

ich habe gerade die navigation in eine wordpress seite eingebaut.

funktioniert soweit auch gut. bis auf die tatsache dass bei klick auf einen pu nkt in der subnavi diese beim reload der seite wieder verschwindet...sitze schon den ganzen tag an dem problem :-(</description>
		<content:encoded><![CDATA[<p>hallo.</p>
<p>ich habe gerade die navigation in eine wordpress seite eingebaut.</p>
<p>funktioniert soweit auch gut. bis auf die tatsache dass bei klick auf einen pu nkt in der subnavi diese beim reload der seite wieder verschwindet&#8230;sitze schon den ganzen tag an dem problem <img src='http://webdemar.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu 5 Tipps zum Einsatz des Plugins WP-PageNavi von Ralf</title>
		<link>http://webdemar.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://webdemar.com/?p=1575#comment-4856</guid>
		<description>Das ganze funktioniert auch OHNE Plugin!
CUSTUM FUNCTIONS.php:

/* 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;);





CSS:

/* 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; }

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>
<p>/* NUMBERED NAV MENU */<br />
function numbered_page_nav($prelabel = &#8221;, $nxtlabel = &#8221;, $pages_to_show = 8, $always_show = false) {<br />
	global $request, $posts_per_page, $wpdb, $paged;</p>
<p>	$custom_range = round($pages_to_show/2);<br />
	if (!is_single()) {<br />
		if(!is_category()) {<br />
			preg_match(&#8216;#FROM\s(.*)\sORDER BY#siU&#8217;, $request, $matches);<br />
		}<br />
		else {<br />
			preg_match(&#8216;#FROM\s(.*)\sGROUP BY#siU&#8217;, $request, $matches);<br />
		}<br />
		$blog_post_count = $matches[1];<br />
		$numposts = $wpdb-&gt;get_var(&#8220;SELECT COUNT(DISTINCT ID) FROM $blog_post_count&#8221;);<br />
		$max_page = ceil($numposts /$posts_per_page);<br />
		if(empty($paged)) {<br />
			$paged = 1;<br />
		}<br />
		if($max_page &gt; 1 || $always_show) {<br />
			echo &#8220;Page $paged of $max_page&#8221;;<br />
			if ($paged &gt;= ($pages_to_show-2)) {<br />
				echo &#8216;<a href="'.get_pagenum_link().'" rel="nofollow">1</a>&#8230; &#8216;;<br />
			}<br />
			for($i = $paged &#8211; $custom_range; $i = 1 &amp;&amp; $i &lt;= $max_page) {<br />
					if($i == $paged) {<br />
						echo &quot;$i&#8221;;<br />
					}<br />
					else {<br />
						echo &#8216; <a href="'.get_pagenum_link($i).'" rel="nofollow">&#8216;.$i.&#8217;</a> &#8216;;<br />
					}<br />
				}<br />
			}<br />
			if (($paged+$custom_range) &lt; ($max_page)) {<br />
				echo &#039; &#8230;<a href="'.get_pagenum_link($max_page).'" rel="nofollow">&#8216;.$max_page.&#8217;</a>&#8216;;<br />
			}<br />
			echo &#8220;&#8221;;<br />
		}<br />
	}<br />
}<br />
remove_action(&#8216;thesis_hook_after_content&#8217;, &#8216;thesis_post_navigation&#8217;);</p>
<p>CSS:</p>
<p>/* NUMBERED PAGE NAV */<br />
.page-nav { font-size: 1.35em; font-weight: bold; margin: 1em 0; padding: 0; overflow: hidden; }<br />
.page-nav-intro { float: left; padding: .3em .5em; margin: 0 1em 1em 0; background: #ffffff; border: .1em solid #ccc; }<br />
.page-number { float: left; padding: .3em .5em; margin: 0 .2em; background: #fff; border: .1em solid #ccc;  }<br />
.current-page-number { float: left; padding: .3em .5em; margin: 0 .2em; background: #ffffff; border: .1em solid #ccc; }</p>
<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>Kommentar zu Tutorial: Automatische Thumbnails mit TimThumb von TimThumb-Script in WP Theme einbauen &#124; funkygog Blog</title>
		<link>http://webdemar.com/wordpress/tutorial-automatische-thumbnails-mit-timthumb/#comment-4855</link>
		<dc:creator>TimThumb-Script in WP Theme einbauen &#124; funkygog Blog</dc:creator>
		<pubDate>Mon, 08 Mar 2010 19:56:35 +0000</pubDate>
		<guid isPermaLink="false">http://webdemar.com/?p=583#comment-4855</guid>
		<description>[...] Tutorial von WebDeMar [...]</description>
		<content:encoded><![CDATA[<p>[...] Tutorial von WebDeMar [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Superfish jQuery Menu IE z-index Bug von Jesus</title>
		<link>http://webdemar.com/webdesign/superfish-jquery-menu-ie-z-index-bug/#comment-4854</link>
		<dc:creator>Jesus</dc:creator>
		<pubDate>Mon, 08 Mar 2010 05:38:26 +0000</pubDate>
		<guid isPermaLink="false">http://webdemar.com/?p=216#comment-4854</guid>
		<description>Hi folks,
I already tried solution son this page and cant figure it out, any help will be appreciate it! Here its the page i&#039;m working with. 
http://www.mundoregio.com/clasificados-monterrey/anumex/</description>
		<content:encoded><![CDATA[<p>Hi folks,<br />
I already tried solution son this page and cant figure it out, any help will be appreciate it! Here its the page i&#8217;m working with.<br />
<a href="http://www.mundoregio.com/clasificados-monterrey/anumex/" rel="nofollow">http://www.mundoregio.com/clasificados-monterrey/anumex/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu WordPress Child Themes von links for 2010-03-07 &#124; Helmis Social Log</title>
		<link>http://webdemar.com/wordpress/wordpress-child-themes/#comment-4853</link>
		<dc:creator>links for 2010-03-07 &#124; Helmis Social Log</dc:creator>
		<pubDate>Mon, 08 Mar 2010 01:01:41 +0000</pubDate>
		<guid isPermaLink="false">http://webdemar.com/?p=103#comment-4853</guid>
		<description>[...] 2010-03-07Written on M&#228;rz 8, 2010 by Frank Helmschrott in bookmarks0 Comments - Leave a comment!WordPress Child Themes &#124; webdemar.comWie kann man ein WordPress Theme ver&#228;ndern ohne es zu ver&#228;ndern? Die Frage klingt paradox, [...]</description>
		<content:encoded><![CDATA[<p>[...] 2010-03-07Written on M&#228;rz 8, 2010 by Frank Helmschrott in bookmarks0 Comments &#8211; Leave a comment!WordPress Child Themes | webdemar.comWie kann man ein WordPress Theme ver&#228;ndern ohne es zu ver&#228;ndern? Die Frage klingt paradox, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Free WordPress-Theme Mimbo 3.0 ver&#246;ffentlicht von Bernd</title>
		<link>http://webdemar.com/wordpress/free-wordpress-theme-mimbo-30-veroeffentlicht/#comment-4852</link>
		<dc:creator>Bernd</dc:creator>
		<pubDate>Sun, 07 Mar 2010 07:52:14 +0000</pubDate>
		<guid isPermaLink="false">http://webdemar.com/?p=653#comment-4852</guid>
		<description>Installation auf einer Testdomain:
Warning: Invalid argument supplied for foreach() in /www/htdocs/w00c2bfd/sp/wp-content/themes/mimbo/index.php  on line 88</description>
		<content:encoded><![CDATA[<p>Installation auf einer Testdomain:<br />
Warning: Invalid argument supplied for foreach() in /www/htdocs/w00c2bfd/sp/wp-content/themes/mimbo/index.php  on line 88</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Superfish jQuery Menu IE z-index Bug von Vince</title>
		<link>http://webdemar.com/webdesign/superfish-jquery-menu-ie-z-index-bug/#comment-4851</link>
		<dc:creator>Vince</dc:creator>
		<pubDate>Thu, 04 Mar 2010 18:18:16 +0000</pubDate>
		<guid isPermaLink="false">http://webdemar.com/?p=216#comment-4851</guid>
		<description>Spent about 20 hours searching for a solution to my SPRY menu z-index problem. Just found your solution a few minutes ago.  Edited two selectors in my CSS and problem solved! 
Thanks so much!</description>
		<content:encoded><![CDATA[<p>Spent about 20 hours searching for a solution to my SPRY menu z-index problem. Just found your solution a few minutes ago.  Edited two selectors in my CSS and problem solved!<br />
Thanks so much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Kommentare formatieren in WordPress 2.7 von Silvio</title>
		<link>http://webdemar.com/wordpress/kommentare-formatieren-in-wordpress-27/#comment-4850</link>
		<dc:creator>Silvio</dc:creator>
		<pubDate>Thu, 04 Mar 2010 12:56:04 +0000</pubDate>
		<guid isPermaLink="false">http://webdemar.com/?p=601#comment-4850</guid>
		<description>Hi Simon,
ich h&#228;tte auf meinem Blog gerne so eine &#228;hnliche Kommentardarstellung wie hier auf webdemar. Ich nehme an, die Darstellung kam zusammen mit dem Theme. L&#228;sst dich das dennoch realisieren bzw. kannst du mir den Codeschnipsel zukommen lassen, sodass ich da rumbasteln kann?!? ;)

Danke &amp; Gru&#223;</description>
		<content:encoded><![CDATA[<p>Hi Simon,<br />
ich h&#228;tte auf meinem Blog gerne so eine &#228;hnliche Kommentardarstellung wie hier auf webdemar. Ich nehme an, die Darstellung kam zusammen mit dem Theme. L&#228;sst dich das dennoch realisieren bzw. kannst du mir den Codeschnipsel zukommen lassen, sodass ich da rumbasteln kann?!? <img src='http://webdemar.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Danke &amp; Gru&#223;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
