<?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>Insomniaonline &#187; wordpress</title>
	<atom:link href="http://www.insomniaonline.de/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.insomniaonline.de</link>
	<description>Webkram. Äpfel. Nichtigkeiten.</description>
	<lastBuildDate>Fri, 03 Feb 2012 16:01:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PuSHPress &#8211; PubSubHubbub f&#252;r WordPress</title>
		<link>http://www.insomniaonline.de/2010/03/pushpress-pubsubhubbub-fuer-wordpress/</link>
		<comments>http://www.insomniaonline.de/2010/03/pushpress-pubsubhubbub-fuer-wordpress/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 12:04:04 +0000</pubDate>
		<dc:creator>kaffdaddy</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[PubSubHubbub]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.insomniaonline.de/?p=462</guid>
		<description><![CDATA[This plugin adds PubSubHubbub ( PuSH ) support to your WordPress powered site. The main difference between this plugin and others is that it includes the hub features of PuSH, built right in. This means the updates will be sent directly from WordPress to your PuSH subscribers. via WordPress › PuSHPress « WordPress Plugins. &#196;hnliche Artikel: [...]
Ähnliche Artikel:<ol>
<li><a href='http://www.insomniaonline.de/2007/10/wordpress-231/' rel='bookmark' title='WordPress 2.3.1'>WordPress 2.3.1</a></li>
<li><a href='http://www.insomniaonline.de/2010/02/kategorien-aus-dem-allgemeinen-feed-ausschliessen/' rel='bookmark' title='Kategorien aus dem allgemeinen Feed ausschlie&#223;en'>Kategorien aus dem allgemeinen Feed ausschlie&#223;en</a></li>
<li><a href='http://www.insomniaonline.de/2007/11/aendern-von-get-post-parametern/' rel='bookmark' title='&#196;ndern von GET-/POST-Parametern'>&#196;ndern von GET-/POST-Parametern</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<blockquote><p>This plugin adds PubSubHubbub ( PuSH ) support to your WordPress powered site. The main difference between this plugin and others is that it includes the hub features of PuSH, built right in. This means the updates will be sent directly from WordPress to your PuSH subscribers.</p></blockquote>
<p>via <a href="http://wordpress.org/extend/plugins/pushpress/">WordPress › PuSHPress « WordPress Plugins</a>.</p>
<p>Ähnliche Artikel:<ol>
<li><a href='http://www.insomniaonline.de/2007/10/wordpress-231/' rel='bookmark' title='WordPress 2.3.1'>WordPress 2.3.1</a></li>
<li><a href='http://www.insomniaonline.de/2010/02/kategorien-aus-dem-allgemeinen-feed-ausschliessen/' rel='bookmark' title='Kategorien aus dem allgemeinen Feed ausschlie&#223;en'>Kategorien aus dem allgemeinen Feed ausschlie&#223;en</a></li>
<li><a href='http://www.insomniaonline.de/2007/11/aendern-von-get-post-parametern/' rel='bookmark' title='&#196;ndern von GET-/POST-Parametern'>&#196;ndern von GET-/POST-Parametern</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.insomniaonline.de/2010/03/pushpress-pubsubhubbub-fuer-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kategorien aus dem allgemeinen Feed ausschlie&#223;en</title>
		<link>http://www.insomniaonline.de/2010/02/kategorien-aus-dem-allgemeinen-feed-ausschliessen/</link>
		<comments>http://www.insomniaonline.de/2010/02/kategorien-aus-dem-allgemeinen-feed-ausschliessen/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 16:49:33 +0000</pubDate>
		<dc:creator>kaffdaddy</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.insomniaonline.de/?p=414</guid>
		<description><![CDATA[Funktioniert in WordPress hervorragend einfach. In der Datei functions.php (Anlegen, falls nicht vorhanden) des Templates/Themes folgende Zeilen hinzuf&#252;gen: function fb_cat_exclude($query) { if ($query->is_feed) { $query->set('cat','-9'); } return $query; } add_filter('pre_get_posts','fb_cat_exclude'); Wobei 9 hierbei die ID der Kategorie ist, die es auszuschlie&#223;en gilt. &#196;hnliche Artikel: WordPress 2.3.1
Ähnliche Artikel:<ol>
<li><a href='http://www.insomniaonline.de/2007/10/wordpress-231/' rel='bookmark' title='WordPress 2.3.1'>WordPress 2.3.1</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Funktioniert in WordPress hervorragend einfach. In der Datei functions.php (Anlegen, falls nicht vorhanden) des Templates/Themes folgende Zeilen hinzuf&#252;gen:</p>
<p><code>function fb_cat_exclude($query) {<br />
    if ($query->is_feed) {<br />
        $query->set('cat','-9');<br />
    }<br />
    return $query;<br />
}</p>
<p>add_filter('pre_get_posts','fb_cat_exclude');</code></p>
<p>Wobei 9 hierbei die ID der Kategorie ist, die es auszuschlie&#223;en gilt.</p>
<p>Ähnliche Artikel:<ol>
<li><a href='http://www.insomniaonline.de/2007/10/wordpress-231/' rel='bookmark' title='WordPress 2.3.1'>WordPress 2.3.1</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.insomniaonline.de/2010/02/kategorien-aus-dem-allgemeinen-feed-ausschliessen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.3.1</title>
		<link>http://www.insomniaonline.de/2007/10/wordpress-231/</link>
		<comments>http://www.insomniaonline.de/2007/10/wordpress-231/#comments</comments>
		<pubDate>Fri, 26 Oct 2007 21:50:08 +0000</pubDate>
		<dc:creator>kaffdaddy</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[2.3.1]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.insomniaonline.de/wordpress-231/</guid>
		<description><![CDATA[Irgendwie wu&#223;te ich es schon vorhin, dass das Update an diesem Wochenende erscheinen wird. Also: updaten. Irgendwie werde ich das Gef&#252;hl nicht los, dass die Releasezyklen bei WordPress immer k&#252;rzer werden. &#196;hnliche Artikel: PuSHPress &#8211; PubSubHubbub f&#252;r WordPress Kategorien aus dem allgemeinen Feed ausschlie&#223;en Trac update auf 0.11
Ähnliche Artikel:<ol>
<li><a href='http://www.insomniaonline.de/2010/03/pushpress-pubsubhubbub-fuer-wordpress/' rel='bookmark' title='PuSHPress &#8211; PubSubHubbub f&#252;r WordPress'>PuSHPress &#8211; PubSubHubbub f&#252;r WordPress</a></li>
<li><a href='http://www.insomniaonline.de/2010/02/kategorien-aus-dem-allgemeinen-feed-ausschliessen/' rel='bookmark' title='Kategorien aus dem allgemeinen Feed ausschlie&#223;en'>Kategorien aus dem allgemeinen Feed ausschlie&#223;en</a></li>
<li><a href='http://www.insomniaonline.de/2008/07/trac-update-auf-011/' rel='bookmark' title='Trac update auf 0.11'>Trac update auf 0.11</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Irgendwie wu&#223;te ich es schon vorhin, dass das Update an diesem Wochenende erscheinen wird. Also: <a href="http://wordpress.org/download/" title="Download von WordPress">updaten</a>. Irgendwie werde ich das Gef&#252;hl nicht los, dass die Releasezyklen bei WordPress immer k&#252;rzer werden.</p>
<p>Ähnliche Artikel:<ol>
<li><a href='http://www.insomniaonline.de/2010/03/pushpress-pubsubhubbub-fuer-wordpress/' rel='bookmark' title='PuSHPress &#8211; PubSubHubbub f&#252;r WordPress'>PuSHPress &#8211; PubSubHubbub f&#252;r WordPress</a></li>
<li><a href='http://www.insomniaonline.de/2010/02/kategorien-aus-dem-allgemeinen-feed-ausschliessen/' rel='bookmark' title='Kategorien aus dem allgemeinen Feed ausschlie&#223;en'>Kategorien aus dem allgemeinen Feed ausschlie&#223;en</a></li>
<li><a href='http://www.insomniaonline.de/2008/07/trac-update-auf-011/' rel='bookmark' title='Trac update auf 0.11'>Trac update auf 0.11</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.insomniaonline.de/2007/10/wordpress-231/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

