<?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>Northern-Web-Coders &#187; Hack</title>
	<atom:link href="http://www.northern-web-coders.de/blog/archiv/tag/hack/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.northern-web-coders.de/blog</link>
	<description>weblog about internet, webdesign and more stuff</description>
	<lastBuildDate>Thu, 11 Mar 2010 13:54:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Content in 2 Spalten</title>
		<link>http://www.northern-web-coders.de/blog/archiv/2007/12/24/content-in-2-spalten/</link>
		<comments>http://www.northern-web-coders.de/blog/archiv/2007/12/24/content-in-2-spalten/#comments</comments>
		<pubDate>Mon, 24 Dec 2007 21:32:31 +0000</pubDate>
		<dc:creator>jaman</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Hack]]></category>

		<guid isPermaLink="false">http://www.northern-web-coders.de/blog/archiv/2007/12/24/content-in-2-spalten/</guid>
		<description><![CDATA[Als kleines Weihnachtsmitbringsel  mal ein Code-Beispiel (themes/deintheme/index.php), wie ich den Content in 2 Div-Spalten aufgeteilt habe.

&#60;?php
get_header();
?&#62;
&#60;div id=&#34;columns&#34;&#62;
&#60;div class=&#34;column-left&#34;&#62;
&#60;?php if (have_posts()) : ?&#62;
&#60;?php while(have_posts()) : the_post(); ?&#62;
&#60;?php $post_counter++; if($post_counter == 5) : ?&#62;
&#60;/div&#62;
&#60;div class=&#34;column-right&#34;&#62;
&#60;?php endif; ?&#62;
&#60;div class=&#34;post&#34;&#62;
&#60;h2&#62;&#60;?php the_time('d.m.Y') ?&#62;&#60;/h2&#62;
&#60;h3 class=&#34;storytitle&#34;&#62;&#60;a href=&#34;&#60;?php the_permalink() ?&#62;&#34; rel=&#34;bookmark&#34;&#62;&#60;?php the_title(); ?&#62;&#60;/a&#62;&#60;/h3&#62;
&#60;div class=&#34;meta&#34;&#62;&#60;?php _e(&#34;Filed under:&#34;); ?&#62; &#60;?php the_category(',') ?&#62; &#60;?php the_tags(__('Tags:&#38;nbsp;'), [...]]]></description>
			<content:encoded><![CDATA[<p>Als kleines Weihnachtsmitbringsel <img src='http://www.northern-web-coders.de/blog/wp-includes/images/smilies/icon_exclaim.gif' alt=':!:' class='wp-smiley' /> mal ein Code-Beispiel (themes/deintheme/index.php), wie ich den <a href="http://www.northern-web-coders.de/blog/archiv/2007/12/23/wordpress-und-theme-update/">Content in 2 Div-Spalten</a> aufgeteilt habe.</p>
<p><span id="more-227"></span></p>
<p><code>&lt;?php<br />
get_header();<br />
?&gt;<br />
&lt;div id=&quot;columns&quot;&gt;<br />
&lt;div class=&quot;column-left&quot;&gt;<br />
&lt;?php if (have_posts()) : ?&gt;<br />
&lt;?php while(have_posts()) : the_post(); ?&gt;<br />
&lt;?php $post_counter++; if($post_counter == 5) : ?&gt;<br />
&lt;/div&gt;<br />
&lt;div class=&quot;column-right&quot;&gt;<br />
&lt;?php endif; ?&gt;<br />
&lt;div class=&quot;post&quot;&gt;<br />
&lt;h2&gt;&lt;?php the_time('d.m.Y') ?&gt;&lt;/h2&gt;<br />
&lt;h3 class=&quot;storytitle&quot;&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h3&gt;<br />
&lt;div class=&quot;meta&quot;&gt;&lt;?php _e(&quot;Filed under:&quot;); ?&gt; &lt;?php the_category(',') ?&gt; &lt;?php the_tags(__('Tags:&amp;nbsp;'), ' , ' , ''); ?&gt; &lt;?php edit_post_link(__('Edit This')); ?&gt;&lt;/div&gt;<br />
&lt;?php the_content(__('(more...)')); ?&gt;<br />
&lt;?php wp_link_pages(); ?&gt;<br />
&lt;div class=&quot;comment&quot;&gt;&lt;?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?&gt;&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;?php endwhile; ?&gt;<br />
&lt;?php else : ?&gt;<br />
&lt;div class=&quot;post&quot; style=&quot;width: 500px&quot;&gt;&lt;?php _e('Sorry, no posts matched your criteria.'); ?&gt;&lt;/div&gt;<br />
&lt;?php endif; ?&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;?php comments_template(); // Get wp-comments.php template ?&gt;<br />
&lt;?php wp_pagebar(array('before'=&gt;'&lt;strong&gt;Seite:&lt;/strong&gt; ', 'after'=&gt;' ', 'tooltip'=&gt;true, 'tooltip_text'=&gt;'Seite'))?&gt;<br />
&lt;?php get_footer(); ?&gt;</code></p>]]></content:encoded>
			<wfw:commentRss>http://www.northern-web-coders.de/blog/archiv/2007/12/24/content-in-2-spalten/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Posts in WP + abwechselnde Css</title>
		<link>http://www.northern-web-coders.de/blog/archiv/2006/01/04/posts-in-wordpress-abwechselnde-css/</link>
		<comments>http://www.northern-web-coders.de/blog/archiv/2006/01/04/posts-in-wordpress-abwechselnde-css/#comments</comments>
		<pubDate>Wed, 04 Jan 2006 18:36:51 +0000</pubDate>
		<dc:creator>jaman</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[Tip]]></category>

		<guid isPermaLink="false">http://www.northern-web-coders.de/blog/archiv/2006/01/04/posts-in-wordpress-abwechselnde-css/</guid>
		<description><![CDATA[Um Beitr&#228;ge in Wordpress abwechselnd farbig darzustellen,
muss man nur daf&#252;r sorgen, dass es nicht nur ein
&#60;div class=&#34;post&#34;&#62; gibt,
sondern immer im Wechsel z.B.
&#60;div class=&#34;postone&#34;&#62; und
&#60;div class=&#34;posttwo&#34;&#62;.

Das ganze funktioniert mit diesen Zeilen:
&#60;?php
function post_style() {
static $post_count;
$post_count++;
if ($post_count % 2) {
echo &#34;1&#34;;
}
else {
echo &#34;2&#34;;
}
}
?&#62;
Diese Zeilen m&#252;ssen in die index.php des Themes direkt unter:
&#60;?php
get_header();
?&#62;
geschriben werden.
Ein paar Zeile weiter unten steht [...]]]></description>
			<content:encoded><![CDATA[<p>Um Beitr&#228;ge in Wordpress abwechselnd farbig darzustellen,<br />
muss man nur daf&#252;r sorgen, dass es nicht nur ein<br />
<code>&lt;div class=&quot;post&quot;&gt;</code> gibt,<br />
sondern immer im Wechsel z.B.<br />
<code>&lt;div class=&quot;postone&quot;&gt;</code> und<br />
<code>&lt;div class=&quot;posttwo&quot;&gt;</code>.</p>
<p><span id="more-154"></span></p>
<p>Das ganze funktioniert mit diesen Zeilen:<br />
<code>&lt;?php<br />
function post_style() {<br />
static $post_count;<br />
$post_count++;<br />
if ($post_count % 2) {<br />
echo &quot;1&quot;;<br />
}<br />
else {<br />
echo &quot;2&quot;;<br />
}<br />
}<br />
?&gt;</code><br />
Diese Zeilen m&#252;ssen in die index.php des Themes direkt unter:<br />
<code>&lt;?php<br />
get_header();<br />
?&gt;</code><br />
geschriben werden.</p>
<p>Ein paar Zeile weiter unten steht dann:<br />
<code>&lt;div class=&quot;post&quot;&gt;</code><br />
Diese Zeile muss dann nur noch duch diese:<br />
<code>&lt;div class=&quot;post&lt;?php post_style(); ?&gt;&quot;&gt;</code><br />
ersetzt werden.</p>
<p>Nun wechseln sich <code>&lt;div class=&quot;postone&quot;&gt;</code> und<br />
<code>&lt;div class=&quot;posttwo&quot;&gt;</code> ab.</p>
<p>Dann muss noch eine Css-Klasse f&#252;r beide angelegt werden und es wird bunt <img src='http://www.northern-web-coders.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
&#196;hnlich funktioniert das auch mit den Kommentaren&#8230; wie beim Kubrick-Theme&#8230;</p>]]></content:encoded>
			<wfw:commentRss>http://www.northern-web-coders.de/blog/archiv/2006/01/04/posts-in-wordpress-abwechselnde-css/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Externe RSS-Feeds einbinden</title>
		<link>http://www.northern-web-coders.de/blog/archiv/2005/06/15/externe-rss-feeds-einbinden/</link>
		<comments>http://www.northern-web-coders.de/blog/archiv/2005/06/15/externe-rss-feeds-einbinden/#comments</comments>
		<pubDate>Wed, 15 Jun 2005 20:57:07 +0000</pubDate>
		<dc:creator>jaman</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[Plugin]]></category>

		<guid isPermaLink="false">http://www.northern-web-coders.de/blog/archiv/2005/06/15/externe-rss-feeds-einbinden/</guid>
		<description><![CDATA[Hab duch Zufall eine sch&#246;ne M&#246;glichkeit gefunden, wie man in Wordpress externe Rss-Feeds einbinden kann&#8230;
Erstmal ben&#246;tigt man das RunPHP-Plugin&#8230;
Dann legt man eine PHP-Datei an und f&#252;gt folgenden Code ein:

&#60;?php
require_once (ABSPATH . WPINC . '/rss-functions.php');
$streams[] = &#34;http://pfad zum rss feed 1&#34;;
$streams[] = &#34;http://pfad zum rss feed 2&#34;;
?&#62;
&#60;?php
$numElements = count($streams);
for($counter=0;$counter&#60;$numElements;$counter++) {
$rss = @fetch_rss($streams[$counter]);
if ( isset($rss-&#62;items) &#38;&#38; 0 [...]]]></description>
			<content:encoded><![CDATA[<p>Hab duch Zufall eine sch&#246;ne M&#246;glichkeit gefunden, wie man in Wordpress externe Rss-Feeds einbinden kann&#8230;</p>
<p>Erstmal ben&#246;tigt man das <a href="http://www.nosq.com/">RunPHP-Plugin</a>&#8230;<br />
Dann legt man eine PHP-Datei an und f&#252;gt folgenden Code ein:</p>
<p><span id="more-126"></span></p>
<p><code>&lt;?php<br />
require_once (ABSPATH . WPINC . '/rss-functions.php');<br />
$streams[] = &quot;http://pfad zum rss feed 1&quot;;<br />
$streams[] = &quot;http://pfad zum rss feed 2&quot;;<br />
?&gt;<br />
&lt;?php<br />
$numElements = count($streams);<br />
for($counter=0;$counter&lt;$numElements;$counter++) {<br />
$rss = @fetch_rss($streams[$counter]);<br />
if ( isset($rss-&gt;items) &amp;&amp; 0 != count($rss-&gt;items) ) {<br />
?&gt;<br />
&lt;b&gt;&lt;a href='&lt;?php echo wp_filter_kses($rss-&gt;channel['link']); ?&gt;'&gt;&lt;?php echo wp_specialchars($rss-&gt;channel['title']); ?&gt;&lt;/a&gt;&lt;/b&gt;<br />
&lt;?php<br />
$rss-&gt;items = array_slice($rss-&gt;items, 0, 4);<br />
foreach ($rss-&gt;items as $item ) {<br />
?&gt;<br />
&lt;a href='&lt;?php echo wp_filter_kses($item['link']); ?&gt;'&gt;&lt;?php echo wp_specialchars($item['title']); ?&gt;&lt;/a&gt;&lt;br /&gt;<br />
&lt;?php echo human_time_diff( strtotime($item['pubdate'], time() ) ); ?&gt; &lt;?php _e('ago'); ?&gt;<br />
&lt;span&gt;&lt;?php echo $item['description']; ?&gt;&lt;/span&gt;<br />
&lt;?php<br />
}<br />
}<br />
}<br />
?&gt;</code></p>
<p>Jetzt muss man nur noch einen Artikel oder auch eine Seite anlegen&#8230;<br />
dann die neu PHP-Datei includen:</p>
<p><code>&lt;?php include('file.php'); ?&gt;</code></p>
<p>und dann noch das <a href="http://www.nosq.com/">RunPHP-Plugin</a> aktivieren.</p>
<p>Es k&#246;nnen von beliebig vielen Seiten Feeds eingebunden werden:</p>
<p><code>$streams[] = &quot;http://pfad zum rss feed 1&quot;;<br />
$streams[] = &quot;http://pfad zum rss feed 2&quot;;</code></p>
<p>Gefunden hab ich das Ganze bei <strong><a href="http://markd.kutha.com/markd/blog/?p=7">glob</a></strong></p>
<p><strong>Nachtrag:</strong><br />
Das ganze funzt auch mit RDF <img src='http://www.northern-web-coders.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><strong>Nochn Nachtrag:</strong><br />
&#8230;mit Atom funzt das auch&#8230; manman <img src='http://www.northern-web-coders.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>]]></content:encoded>
			<wfw:commentRss>http://www.northern-web-coders.de/blog/archiv/2005/06/15/externe-rss-feeds-einbinden/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Homelink in Pages</title>
		<link>http://www.northern-web-coders.de/blog/archiv/2005/04/08/homelink-in-pages/</link>
		<comments>http://www.northern-web-coders.de/blog/archiv/2005/04/08/homelink-in-pages/#comments</comments>
		<pubDate>Fri, 08 Apr 2005 15:09:18 +0000</pubDate>
		<dc:creator>jaman</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[Tip]]></category>

		<guid isPermaLink="false">http://www.northern-web-coders.de/blog/archiv/2005/04/08/bloglink-in-pages/</guid>
		<description><![CDATA[Wordpress 1.5 verf&#252;gt &#252;ber eine Pagefunktion, welche ich (wie viele andere auch) in den Header gepackt habe. Die Markierung des aktiven Links klappt auch. Nun wollte ich aber auch einen Link zu meinem Blog in der Pagenavigation haben. Das geht nur, indem man den Link per Hand eintr&#228;gt. Soweit kein Problem, aber die Markierung des [...]]]></description>
			<content:encoded><![CDATA[<p>Wordpress 1.5 verf&#252;gt &#252;ber eine Pagefunktion, welche ich (wie viele andere auch) in den Header gepackt habe. Die Markierung des aktiven Links klappt auch. Nun wollte ich aber auch einen Link zu meinem Blog in der Pagenavigation haben. Das geht nur, indem man den Link per Hand eintr&#228;gt. Soweit kein Problem, aber die Markierung des Links funktioniert dann nat&#252;rlich nicht. Mit einer kleinen if/else Abfrage funktioniert es aber doch&#8230;</p>
<p><span id="more-114"></span></p>
<p><img src='http://www.northern-web-coders.de/blog/uploads/menulink.png' alt='' /></p>
<p><code>&lt;?php<br />
if (is_home()) { // Blog<br />
 echo &quot;&lt;li class=\&quot;page_item current_page_item\&quot;&gt;&lt;a href=\&quot;http://www.url_zum_blog.tld/\&quot; title=\&quot;blog\&quot;&gt;blog&lt;/a&gt;&lt;/li&gt;&quot;;<br />
 } elseif (is_single()) { // Postings<br />
 echo &quot;&lt;li class=\&quot;page_item current_page_item\&quot;&gt;&lt;a href=\&quot;http://www.url_zum_blog.tld/\&quot; title=\&quot;blog\&quot;&gt;blog&lt;/a&gt;&lt;/li&gt;&quot;;<br />
 } elseif (is_search()) { // Search<br />
 echo &quot;&lt;li class=\&quot;page_item current_page_item\&quot;&gt;&lt;a href=\&quot;http://www.url_zum_blog.tld/\&quot; title=\&quot;blog\&quot;&gt;blog&lt;/a&gt;&lt;/li&gt;&quot;;<br />
 } elseif (is_archive()) { // Archiv<br />
 echo &quot;&lt;li class=\&quot;page_item current_page_item\&quot;&gt;&lt;a href=\&quot;http://www.url_zum_blog.tld/\&quot; title=\&quot;blog\&quot;&gt;blog&lt;/a&gt;&lt;/li&gt;&quot;;<br />
 } else { // Alle was sonst nicht passt<br />
 echo &quot;&lt;li class=\&quot;page_item\&quot;&gt;&lt;a href=\&quot;http://www.url_zum_blog.tld/\&quot; title=\&quot;blog\&quot;&gt;blog&lt;/a&gt;&lt;/li&gt;&quot;;<br />
 } ?&gt;</code></p>
<p><a href="http://www.northern-web-coders.de/blog/uploads/bloglinkinpages.phps">hier nochmal zum downloaden</a></p>
<p><strong>Nachtrag:</strong><br />
Nach diesem Prinzip l&#228;sst sich auch ein spezielles Headerbild pro Page realisieren <img src='http://www.northern-web-coders.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=':wink:' class='wp-smiley' /> </p>
<p>Bsp.: <a href="http://www.deichnetz.de">Deichnetz</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.northern-web-coders.de/blog/archiv/2005/04/08/homelink-in-pages/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Weblog-Statistik</title>
		<link>http://www.northern-web-coders.de/blog/archiv/2004/06/17/weblog-statistik/</link>
		<comments>http://www.northern-web-coders.de/blog/archiv/2004/06/17/weblog-statistik/#comments</comments>
		<pubDate>Thu, 17 Jun 2004 11:24:45 +0000</pubDate>
		<dc:creator>jaman</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[Tip]]></category>

		<guid isPermaLink="false">http://www.northern-web-coders.de/blog/archiv/2004/06/17/weblog-statistik/</guid>
		<description><![CDATA[Nun gibt es hier auch eine kleine Blog-Statistik. (siehe rechts im Men&#252;)
Der urspr&#252;ngliche Code stammt von GamerZ.
hier der Quelltext]]></description>
			<content:encoded><![CDATA[<p>Nun gibt es hier auch eine kleine Blog-Statistik. (siehe rechts im Men&#252;)<br />
Der urspr&#252;ngliche Code stammt von <a href="http://www.lesterchan.net/blogs/">GamerZ</a>.</p>
<p><a href="http://www.northern-web-coders.de/blog/uploads/wp-stats.phps">hier der Quelltext</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.northern-web-coders.de/blog/archiv/2004/06/17/weblog-statistik/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Einfaches WP-Archiv</title>
		<link>http://www.northern-web-coders.de/blog/archiv/2004/06/04/einfaches-wp-archiv/</link>
		<comments>http://www.northern-web-coders.de/blog/archiv/2004/06/04/einfaches-wp-archiv/#comments</comments>
		<pubDate>Fri, 04 Jun 2004 10:36:54 +0000</pubDate>
		<dc:creator>jaman</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[Tip]]></category>

		<guid isPermaLink="false">http://www.northern-web-coders.de/blog/archiv/2004/06/04/einfaches-wp-archiv/</guid>
		<description><![CDATA[F&#252;r Wordpress gibt es ja einige Hacks und Plugins.
Ich wollte eine Extraseite mit einer ausf&#252;hlichen Archiv&#252;bersicht.
Dazu hab ich aus dem WP-Wiki den Archivhack von MtDewVirus etwas abge&#228;ndert, und in eine seperate Seite (archive.php) eingebaut. (siehe rechts im Men&#252;)
Hier der Quelltext.]]></description>
			<content:encoded><![CDATA[<p>F&#252;r Wordpress gibt es ja einige Hacks und Plugins.<br />
Ich wollte eine Extraseite mit einer ausf&#252;hlichen Archiv&#252;bersicht.<br />
Dazu hab ich aus dem <a href="http://wiki.wordpress.org/MtDewVirus%20Archives">WP-Wiki den Archivhack von MtDewVirus</a> etwas abge&#228;ndert, und in eine seperate Seite (archive.php) eingebaut. (siehe rechts im Men&#252;)</p>
<p><a href="http://www.northern-web-coders.de/blog/uploads/archive.phps">Hier der Quelltext.</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.northern-web-coders.de/blog/archiv/2004/06/04/einfaches-wp-archiv/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Style Page Navigation</title>
		<link>http://www.northern-web-coders.de/blog/archiv/2004/05/16/style-page-navigation/</link>
		<comments>http://www.northern-web-coders.de/blog/archiv/2004/05/16/style-page-navigation/#comments</comments>
		<pubDate>Sun, 16 May 2004 13:28:58 +0000</pubDate>
		<dc:creator>jaman</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Hack]]></category>

		<guid isPermaLink="false">http://www.northern-web-coders.de/blog/archiv/2004/05/16/style-page-navigation/</guid>
		<description><![CDATA[Irgendwie dachte ich mir, dass hier eine Seitenbl&#228;tter-Funktion
nicht schlecht w&#228;re. So ein Hack gibt&#8217;s nat&#252;rlich f&#252;r Wordpress.
Im Wp-Forum findet man einiges dazu.]]></description>
			<content:encoded><![CDATA[<p>Irgendwie dachte ich mir, dass hier eine Seitenbl&#228;tter-Funktion<br />
nicht schlecht w&#228;re. So ein Hack gibt&#8217;s nat&#252;rlich f&#252;r Wordpress.<br />
Im <a href="http://wordpress.org/support/10/1542">Wp-Forum</a> findet man einiges dazu.</p>]]></content:encoded>
			<wfw:commentRss>http://www.northern-web-coders.de/blog/archiv/2004/05/16/style-page-navigation/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
