<?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>RawDev.net &#187; Wordpress</title>
	<atom:link href="http://rawdev.net/category/hacking/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://rawdev.net</link>
	<description>Just another Zabreznik.si Sites site</description>
	<lastBuildDate>Tue, 27 Jul 2010 17:48:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>CeBIT 2010, WordPress 3.0</title>
		<link>http://rawdev.net/2010/03/07/cebit-2010-wordpress-3-0/</link>
		<comments>http://rawdev.net/2010/03/07/cebit-2010-wordpress-3-0/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 18:12:30 +0000</pubDate>
		<dc:creator>Marko Zabreznik</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[WordPress 3.0]]></category>

		<guid isPermaLink="false">http://www.rawdev.net/?p=246</guid>
		<description><![CDATA[Yes, CeBIT 2010 is a event to remember with showcases of so many things coming up this year. I talked to a wordpress-deutschland.org representer (sorry didn&#8217;t catch your name) about the upcoming WordPress 3.0 and its multi-site feature. And I got me one of the limited edition WordPress DE bags along with a nice sticker , thank you ^^ [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Yes, CeBIT 2010 is a event to remember with showcases of so many things coming up this year. I talked to a wordpress-deutschland.org representer (sorry didn&#8217;t catch your name) about the upcoming WordPress 3.0 and its <a href="http://dougal.gunters.org/blog/2010/01/25/wordpress-3-0-multisite-terminology">multi-site feature</a>.</p>
<p style="text-align: center;"><a href="http://rawdev.net/files/2010/03/26935_378021589902_736099902_4945844_7095955_n.jpg"><img class="size-medium wp-image-271 aligncenter" title="26935_378021589902_736099902_4945844_7095955_n" src="http://rawdev.net/files/2010/03/26935_378021589902_736099902_4945844_7095955_n-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p style="text-align: center;">
<p>And I got me one of the limited edition WordPress DE bags along with a nice sticker <img src='http://rawdev.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> , thank you ^^</p>
<p>Maybe a full review of the happenings in Hanover later, as 2300km of bus travel do take the life out of a man.</p>
<h6 class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.slideshare.net/janeforshort/whats-coming-in-wordpress-30">What&#8217;s Coming in WordPress 3.0</a> (slideshare.net)</li>
<li class="zemanta-article-ul-li"><a href="http://www.techstartups.com/2009/11/25/wordpress-3-0-wish-list/">WordPress 3.0 Wish List</a> (techstartups.com)</li>
<li class="zemanta-article-ul-li"><a href="http://gizmodo.com/5486971/cebit-remainders-8-reasons-we-didnt-go/gallery/">CeBIT Remainders: 8 Reasons We Didn&#8217;t Go [Remainders]</a> (gizmodo.com)</li>
</ul>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=de815efc-3aed-4bd8-b164-ac2dee5f301e" alt="" /><span class="zem-script more-related pretty-attribution"> </span></div>
]]></content:encoded>
			<wfw:commentRss>http://rawdev.net/2010/03/07/cebit-2010-wordpress-3-0/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress Redirect Registration Page</title>
		<link>http://rawdev.net/2010/02/20/wordpress-redirect-registration-page/</link>
		<comments>http://rawdev.net/2010/02/20/wordpress-redirect-registration-page/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 21:06:21 +0000</pubDate>
		<dc:creator>Marko Zabreznik</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.rawdev.net/2010/02/20/wordpress-redirect-registration-page/</guid>
		<description><![CDATA[In one particural case, you don&#8217;t want to disable WP registration but just redirect the page so some other script takes care of it. That happened to me while working on a WordPress and bbPress website. The solution is quite simple: add_action(&#8216;login_form_register&#8217;, &#8216;redirectregister&#8217;); function redirectregister(){wp_redirect(get_option(&#8216;siteurl&#8217;) . &#8216;/bb/register.php&#8217;);} add this where wordpress will find it, in [...]]]></description>
			<content:encoded><![CDATA[<p>In one particural case, you don&#8217;t want to disable WP registration but just redirect the page  so some other script takes care of it. That happened to me while working on a WordPress and bbPress website. The solution is quite simple:</p>
<p>add_action(&#8216;login_form_register&#8217;, &#8216;redirectregister&#8217;);<br />
function redirectregister(){wp_redirect(get_option(&#8216;siteurl&#8217;) . &#8216;/bb/register.php&#8217;);}</p>
<p>add this where wordpress will find it, in your functions file or just any plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://rawdev.net/2010/02/20/wordpress-redirect-registration-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zemanta</title>
		<link>http://rawdev.net/2008/03/30/zemanta/</link>
		<comments>http://rawdev.net/2008/03/30/zemanta/#comments</comments>
		<pubDate>Sun, 30 Mar 2008 19:30:49 +0000</pubDate>
		<dc:creator>Marko Zabreznik</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[zemanta]]></category>

		<guid isPermaLink="false">http://www.rawdev.net/?p=19</guid>
		<description><![CDATA[Yesterday I attended a presentation of Zemanta, a recently launched &#8220;blogging apprentice&#8221;. Currently only a Firefox plugin ( IE on the way, if anyone cares ), running on Blogger, Typepad and WordPress &#60; 2.5. Its concept is simple: It gets the images from Wikimedia Commons, Flickr and various stock photo providers, and lets you pick [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I attended a presentation of <a href="http://www.zemanta.com">Zemanta</a>, a recently launched &#8220;blogging apprentice&#8221;.<img class="alignright" style="float: right;padding:10px" src="http://www.zemanta.com/smedia/img/zlogo.gif" alt="Zemanta" /></p>
<p>Currently only a Firefox plugin ( IE on the way, if anyone cares ), running on Blogger, Typepad and WordPress &lt; 2.5. Its concept is simple: It gets the images from Wikimedia Commons, Flickr and various stock photo providers, and lets you pick them out and place them into your post. They are suggested based on contextual comparison of your text and the image&#8217;s title, description and articles they were used in originally.</p>
<p>From what i used it, i was satisfied. Looking forward for the WordPress 2.5 update.</p>
<p>Update:<br />
Zemanta now works with WordPress 2.5, and i seem to have played my part in it =D</p>
]]></content:encoded>
			<wfw:commentRss>http://rawdev.net/2008/03/30/zemanta/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
	</channel>
</rss>
