<?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>Melih Bilgil &#187; Blog</title>
	<atom:link href="http://www.lonja.de/category/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lonja.de</link>
	<description>VISUAL &#38; CONCEPTUAL DESIGN</description>
	<lastBuildDate>Fri, 05 Aug 2011 08:08:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Related Posts with WordPress</title>
		<link>http://www.lonja.de/wordpress-related-posts-without-plugin-and-custom-fields/</link>
		<comments>http://www.lonja.de/wordpress-related-posts-without-plugin-and-custom-fields/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 14:21:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.lonja.de/?p=1048</guid>
		<description><![CDATA[without Plugin and the help of Custom Fields]]></description>
			<content:encoded><![CDATA[<p>While looking around for a code to show Similar Posts I found <a href="http://www.wprecipes.com/how-to-show-related-posts-without-a-plugin" target="_blank">this great piece of code</a>. The problem is, that it always takes the first tag — which are sorted alphabetically. So I extended the code to chose the tag you like manually by a value in the custom fields. If you leave it blank it will still take the first tag.<br />
You have to put the code in the file single.php in your theme. The code has to be in the <a title="Wordpress Loop" href="http://codex.wordpress.org/The_Loop" target="_blank">loop</a>.</p>
<p>You have to name the Custom Field tagnumber or you have to change it in the code. If you for example fill in the value 2 it will be the 3 tag since the array starts to count with 0. If you like you can add a +1 in the code.</p>
<p><img class="alignnone size-full wp-image-1064" title="custom_fields_tagnumber" src="http://www.lonja.de/wp-content/uploads/custom_fields_tagnumber.png" alt="" width="751" height="200" /></p>
<p>Have fun. Here is the code:</p>
<div class="code">
<pre>&lt;?php

   $tags = wp_get_post_tags($post-&gt;ID);

   if ($tags) {
     $tagnumber = get_post_custom_values("tagnumber"); <span style="color: #3366ff;">// Get the value/tagnumber from Custom field</span>
     if (isset($tagnumber[0])) {
       $tagnumber = get_post_meta($post-&gt;ID, 'tagnumber', true); <span style="color: #3366ff;">// If there is a value take it...</span>
     }
     else {
       $tagnumber = 0; <span style="color: #3366ff;">// ...otherwise take the first tag</span>
     }                        

   $first_tag = $tags[$tagnumber]-&gt;term_id;
   $args=array(
    'tag__in' =&gt; array($first_tag),
    'post__not_in' =&gt; array($post-&gt;ID),
    'showposts'=&gt;4, <span style="color: #3366ff;">// Number of related posts</span>
    'caller_get_posts'=&gt;1
   );
   $my_query = new WP_Query($args);

   if( $my_query-&gt;have_posts() ) {
     echo 'Related Posts';
     while ($my_query-&gt;have_posts()) : $my_query-&gt;the_post(); ?&gt;
     &lt;a href="&lt;?php the_permalink() ?&gt;" rel="bookmark" title="Link to &lt;?php the_title_attribute(); ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;

 &lt;?php
 endwhile;
 }
 }
?&gt;
</pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lonja.de/wordpress-related-posts-without-plugin-and-custom-fields/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internetbrunnen Icon</title>
		<link>http://www.lonja.de/internetbrunnen-icon/</link>
		<comments>http://www.lonja.de/internetbrunnen-icon/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 11:54:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Icon Design]]></category>
		<category><![CDATA[Icons]]></category>
		<category><![CDATA[Piktogramme]]></category>

		<guid isPermaLink="false">http://www.lonja.de/?p=869</guid>
		<description><![CDATA[Navigation sign]]></description>
			<content:encoded><![CDATA[<p>I lately designed the icon/logo for the <a href="http://www.internetbrunnen.de/" target="_blank">Internetbrunnen</a> (<a href="http://www.internetwell.org/" target="_blank">Internetwell</a>), a project whose goal is to provide internet on the basis of donations.<br />
The project was initiated by the association <a href="http://www.pengland.de/" target="_blank">PENG — Association for the promotion of Design, Art &amp; Communication</a> in Mainz, Germany and the Co-Founder <a href="http://www.helloandlike.com/" target="_blank">Alex Boerger</a>.<br />
The icon will help people to find places with an Internetwell.</p>
<p>For more information please visit the official <a href="http://www.internetbrunnen.de/" target="_blank">Internetbrunnen Website</a>, join the <a title="internetbrunnen facebook fanpage" href="http://www.facebook.com/internetbrunnen" target="_blank">Facebook Site</a> or read the article on <a title="internetbrunnen heute.de" href="http://www.heute.de/ZDFheute/inhalt/1/0,3672,8107585,00.html" target="_blank">heute.de</a></p>
<p><img class="alignnone size-full wp-image-870" title="internetbrunnen-taz-DSC_3046" src="http://www.lonja.de/wp-content/uploads/internetbrunnen-taz-DSC_3046.jpg" alt="Internetbrunnen Logo Icon" width="694" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lonja.de/internetbrunnen-icon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving to Munich</title>
		<link>http://www.lonja.de/moving-to-munich/</link>
		<comments>http://www.lonja.de/moving-to-munich/#comments</comments>
		<pubDate>Wed, 19 May 2010 11:04:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.lonja.de/?p=717</guid>
		<description><![CDATA[
After about 7 wonderfull years in Mainz
I decided to move to Munich in mid-June.
*** UPDATE: I already live in Munich and it´s great! ***
]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-723" title="mainz muc" src="http://www.lonja.de/wp-content/uploads/blog_moving.png" alt="" width="480" /><br />
After about 7 wonderfull years in <a title="Mainz" href="http://de.wikipedia.org/wiki/Mainz" target="_blank">Mainz</a><br />
I decided to move to <a title="München" href="http://de.wikipedia.org/wiki/M%C3%BCnchen" target="_blank">Munich</a> in mid-June.</p>
<p>*** UPDATE: I already live in Munich and it´s great! ***</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lonja.de/moving-to-munich/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MYPS Making of</title>
		<link>http://www.lonja.de/myps-making-of/</link>
		<comments>http://www.lonja.de/myps-making-of/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 08:27:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[myps]]></category>

		<guid isPermaLink="false">http://lonjawp.lonja.de/?p=588</guid>
		<description><![CDATA[My role: Production Design]]></description>
			<content:encoded><![CDATA[<p>In 2008 I made the production design for the movie Myps by Sebastian Schnabel and Alex v. Schilling. A few days ago the making of was made and finished by Georg Baumann and Christoph Schulte.</p>
<p>Watch the making of here<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="360" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=9216102&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="640" height="360" src="http://vimeo.com/moogaloop.swf?clip_id=9216102&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lonja.de/myps-making-of/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Animation for Quarks&amp;Co</title>
		<link>http://www.lonja.de/animation-for-quarks-und-co/</link>
		<comments>http://www.lonja.de/animation-for-quarks-und-co/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 16:31:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://lonjawp.lonja.de/?p=573</guid>
		<description><![CDATA[Parts of my animation &#8220;History of the Internet&#8221; and some extra scenes appeared on the TV show Quarks&#38;Co on national television in Germany. See the contribution made by Mike Schaefer here.


]]></description>
			<content:encoded><![CDATA[<p>Parts of my animation &#8220;History of the Internet&#8221; and some extra scenes appeared on the TV show Quarks&amp;Co on national television in Germany. See the contribution made by Mike Schaefer <a href="http://www.wdr.de/tv/quarks/sendungsbeitraege/2009/1020/uebersicht_internet.jsp" target="_blank">here</a><em>.</em></p>
<p><em><img class="alignnone size-full wp-image-576" title="blog_quarks_geschichte" src="http://lonjawp.lonja.de/wp-content/uploads/blog_quarks_geschichte.jpg" alt="" width="480" /><br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lonja.de/animation-for-quarks-und-co/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>:output 12 award</title>
		<link>http://www.lonja.de/output-12/</link>
		<comments>http://www.lonja.de/output-12/#comments</comments>
		<pubDate>Wed, 20 May 2009 16:29:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://lonjawp.lonja.de/?p=565</guid>
		<description><![CDATA[My diploma &#8220;PICOL, PIctorial COmmunication Language&#8221; was awarded at the international competition for students in design and architecture :output12.
]]></description>
			<content:encoded><![CDATA[<p>My diploma &#8220;<a href="/tag/diploma">PICOL</a>, PIctorial COmmunication Language&#8221; was awarded at the international competition for students in design and architecture <a title="picol by melih bilgil at output" href="http://www.inputoutput.de/index.php?m=winners%20output%2012_1_8_2_42_en" target="_blank">:output12</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lonja.de/output-12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My diploma in the time magazine</title>
		<link>http://www.lonja.de/my-diploma-in-the-time-magazine/</link>
		<comments>http://www.lonja.de/my-diploma-in-the-time-magazine/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 15:37:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://lonjawp.lonja.de/?p=552</guid>
		<description><![CDATA[

Read the articel on time.com
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.time.com/time/arts/article/0,8599,1874608,00.html"><br />
<img class="alignnone size-full wp-image-562" title="blog_time_history_internet" src="http://lonjawp.lonja.de/wp-content/uploads/blog_time_history_internet.jpg" alt="" width="580" /></a></p>
<p>Read the articel on <a href="http://www.time.com/time/arts/article/0,8599,1874608,00.html" target="_blank">time.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lonja.de/my-diploma-in-the-time-magazine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

