<?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>Penguination Project &#187; News</title>
	<atom:link href="http://penguinationproject.com/category/news/feed" rel="self" type="application/rss+xml" />
	<link>http://penguinationproject.com</link>
	<description></description>
	<lastBuildDate>Thu, 29 Oct 2009 19:51:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Editing default wordpress theme tutorial #2</title>
		<link>http://penguinationproject.com/editing-default-wordpress-theme-tutuorial-2</link>
		<comments>http://penguinationproject.com/editing-default-wordpress-theme-tutuorial-2#comments</comments>
		<pubDate>Sun, 14 Jun 2009 09:43:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How To tips]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress design]]></category>

		<guid isPermaLink="false">http://penguinationproject.com/?p=165</guid>
		<description><![CDATA[Hello, we will continue default wordpress theme editing tutorial, in tutorial #1 we fixed default wordpress theme to enable sidebar showing in all posts and categories, and today you will learn how to add most recent video in your right sidebar , or somwhere else inside of your wordpress blog.  We will try to explain [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-166" style="margin: 5px;" title="code" src="http://penguinationproject.com/wp-content/uploads/2009/06/code-300x276.gif" alt="code" width="300" height="276" />Hello, we will continue default wordpress theme editing tutorial, in tutorial #1 we fixed default wordpress theme to enable sidebar showing in all posts and categories, and today you will learn how to add most recent video in your right sidebar , or somwhere else inside of your wordpress blog.  We will try to explain our best PHP code parts you should insert or edit, and we hope this will be the  good start in creating your own wordpress themes.</p>
<p>Please take a look at our example, of what are we going to create : <a href="http://penguinationproject.com/preview/" target="_blank">Here</a></p>
<p><strong>Let&#8217;s start coding : </strong></p>
<p>First create category &#8220;videos&#8221; and post at least one video from youtube or any other flash video.</p>
<p>Now we will need &#8220;video&#8221; category id before we will start PHP coding of our sidebar, login to your wp-admin, click on posts, categories , you will see categories list, click on created video category.</p>
<p>In your browser address field you will see something like that : http://penguinationproject.com/preview/wp-admin/categories.php?action=edit&amp;cat_ID=3</p>
<p>Category id number  is 3 (cat_ID=3).</p>
<p>Now when we know our category id , let&#8217;s start coding.</p>
<p>Click on appearance in your left admin menu, click edit , you will see files list on right menu. Click on sidebar.php</p>
<p>Find html code  <strong>&lt;div id=&#8221;sidebar&#8221; role=&#8221;complementary&#8221;&gt;</strong></p>
<p>After this code and before &lt;ul&gt; tag starts insert PHP code below , we commented inside of code where you should add your category id number.</p>
<pre><strong><cite>&lt;?php</cite> <span style="text-decoration: underline;">if</span> ( have_posts() ) : <cite>?&gt;</cite></strong>

// take a look at line below, &amp;cat=3 , change 3 to your category id.

<strong><cite>&lt;?php</cite> <a>$my_query</a> = <span style="text-decoration: underline;">new</span> WP_Query('showposts=1&amp;cat=3');

<span style="text-decoration: underline;">while</span> (<a>$my_query</a>-&gt;have_posts()) : <a>$my_query</a>-&gt;the_post();
  <a>$do_not_duplicate</a> = <a>$post</a>-&gt;ID;<cite>?&gt;</cite></strong>

<strong><cite>&lt;?php</cite>
<a>$id</a> =<a>$post</a>-&gt;ID;
<a>$the_content</a> =<a>
$wpdb</a>-&gt;get_var("SELECT post_content FROM <a>$wpdb</a>-&gt;posts WHERE ID = <a>$id</a> ");
<a>$pattern</a> = '!&lt;embed.*?src="(.*?)"!';

preg_match_all(<a>$pattern</a>, <a>$the_content</a>, <a>$matches</a>);
<a>$obj_src</a> = <a>$matches</a>['1'][0];
<cite>?&gt;</cite></strong>

<strong><cite>&lt;?php</cite> <span style="text-decoration: underline;">if</span>(<a>$obj_src</a> != '') 

{ 

<span style="text-decoration: underline;">echo</span> '<strong>&lt;b&gt;</strong>Latest Video<strong>&lt;/b&gt;</strong><strong>&lt;br&gt;</strong><strong>&lt;br&gt;</strong><strong>&lt;object width="160" height="120"&gt;
</strong><strong>&lt;param name="movie" value="'.<a>$obj_src.</a>'"&gt;</strong><strong>&lt;/param&gt;
</strong><strong>&lt;param name="allowFullScreen" value="<span style="text-decoration: underline;">true</span>"&gt;</strong><strong>&lt;/param&gt;
</strong><strong>&lt;param name="allowscriptaccess" value="always"&gt;</strong><strong>&lt;/param&gt;
</strong><strong>&lt;embed src="'.<a>$obj_src.</a>'" type="application/x-shockwave-flash"
allowscriptaccess="always" allowfullscreen="<span style="text-decoration: underline;">true</span>" width="160" height="120"&gt;</strong><strong>&lt;/embed&gt;
</strong><strong>&lt;/object&gt;</strong><strong>&lt;br&gt;</strong><strong>&lt;br&gt;</strong>'; 

}

<cite>?&gt;</cite></strong>
 <strong><cite>&lt;?php</cite> <span style="text-decoration: underline;">endwhile</span>; <cite>?&gt;</cite></strong>

<strong><cite>&lt;?php</cite> <span style="text-decoration: underline;">endif</span>; <cite>?&gt;</cite></strong></pre>
<p>Now save the file , go to your wordpress blog&#8217;s  homepage , You will see most recent video on your blogs sidebar .</p>
<p>From now once you are adding video in &#8220;video&#8221; category , it will automatically appear on your sidebar.</p>
<p>We will continue hacking default wordpress theme soon. And we wish you all the best ! Please leve comments.</p>
<p>Good luck.</p>
<p><em></em></p>
]]></content:encoded>
			<wfw:commentRss>http://penguinationproject.com/editing-default-wordpress-theme-tutuorial-2/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Youtube Video Downloader Website tool</title>
		<link>http://penguinationproject.com/youtube-video-downloader-website-tool</link>
		<comments>http://penguinationproject.com/youtube-video-downloader-website-tool#comments</comments>
		<pubDate>Wed, 10 Jun 2009 11:37:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[youtube downloader]]></category>
		<category><![CDATA[youtube downloader plugin]]></category>

		<guid isPermaLink="false">http://penguinationproject.com/?p=143</guid>
		<description><![CDATA[Great news from youtube video collector, now you can easily embed youtube downloader form into your website and to let your visitors download youtube videos from your website !
Here is the tool : 

Grab this code on youtube video collector ! Here >>
Good luck 
]]></description>
			<content:encoded><![CDATA[<p>Great news from youtube video collector, now you can easily embed youtube downloader form into your website and to let your visitors download youtube videos from your website !<br />
Here is the tool : </p>
<p><iframe height="170" width="300" style="border:1px solid #c5c5c5" src="http://youtubevideocollector.com/dl.php"></iframe></p>
<p>Grab this code on youtube video collector ! <a href="http://youtubevideocollector.com/website_tool.php">Here >></a></p>
<p>Good luck </p>
]]></content:encoded>
			<wfw:commentRss>http://penguinationproject.com/youtube-video-downloader-website-tool/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wordpress SEO tips</title>
		<link>http://penguinationproject.com/wordpress-seo-tips</link>
		<comments>http://penguinationproject.com/wordpress-seo-tips#comments</comments>
		<pubDate>Thu, 04 Jun 2009 13:52:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How To tips]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[wordpress seo]]></category>

		<guid isPermaLink="false">http://penguinationproject.com/?p=89</guid>
		<description><![CDATA[Hello,
We will teach you today how to SEO optimize your wordpress blog for better google and other search engines ranking.
If you created your wordpress blog already, first step you should do is  : login to your wordpress admin panel , in left menu click settings, permalinks . In common structure select custom structure and type [...]]]></description>
			<content:encoded><![CDATA[<p>Hello,</p>
<p>We will teach you today how to SEO optimize your wordpress blog for better google and other search engines ranking.</p>
<p>If you created your wordpress blog already, first step you should do is  : login to your wordpress admin panel , in left menu click settings, permalinks . In common structure select custom structure and type /%postname%  .  It will make your permalinks human readible, this step is also cool for google and other search engines that regularly visit your website.</p>
<p>Ater that you should install two SEO wordpress plugins :  <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/" target="_blank">All in one SEO plugin</a> and  <a href="http://wordpress.org/extend/plugins/google-sitemap-generator/" target="_blank">xml-sitemap plugin</a> with your wordpress blog.</p>
<p>Once both plugins installed, post about 15 &#8211; 40 quality uniqye ( not copied from another websites ) content. Login to your wordpress admin panel , settings , click on xml-sitemap plugin , create sitemap. From now sitemap will be automatically updated once you create every single wordpress post.</p>
<p>Now you can submit your blog with google. Go to<a href="https://www.google.com/accounts/ServiceLogin?service=sitemaps&amp;passive=true&amp;nui=1&amp;continue=https%3A%2F%2Fwww.google.com%2Fwebmasters%2Ftools%2Fdashboard&amp;followup=https%3A%2F%2Fwww.google.com%2Fwebmasters%2Ftools%2Fdashboard&amp;hl=en" target="_blank"> google webmaster tools </a> and submit your site, they will ask you for veryfication. The best method to verify your site is by adding meta tag to your wordpress blog header, in webmaster tools click verify, you will see verification methods, choose &#8220;verify by meta tag&#8221; and continue, copy provided html code and go back to your website. Login to your wordpress admin panel , click on apperance -&gt; editor. On right panel ( titled as theme files )  click on header.php file. Find lines started with &lt;title  , after &lt;/title&gt; tag paste google provided html code, save and exit.</p>
<p><strong>Submit sitemap.xml</strong> file. Go back to your google webmaster tools account and click on your website domain , find &#8220;sitemaps&#8221; in menu , click on it , in the field &#8220;submit sitemap&#8221; type sitemap.xml  ,  click on submit sitemap button.</p>
<p>Now you are done , continue posting quality content in your blog regularly and you will get lots of visitors, coming from google search.</p>
<p>If you have any suggestions, post it in comments.</p>
<p>Good Luck.</p>
]]></content:encoded>
			<wfw:commentRss>http://penguinationproject.com/wordpress-seo-tips/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Search Twitter and watch videos</title>
		<link>http://penguinationproject.com/search-twitter-and-watch-videos</link>
		<comments>http://penguinationproject.com/search-twitter-and-watch-videos#comments</comments>
		<pubDate>Tue, 02 Jun 2009 17:37:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How To tips]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://penguinationproject.com/?p=74</guid>
		<description><![CDATA[Simple, but very cool idea to integrate twitter search engine API with Yahoo API, it was released ! Very cool Twitter searching tool called twuet.  Search and be searched. I think this is Penguin Joe on their logo . Visit twuet.com for more details !

]]></description>
			<content:encoded><![CDATA[<p>Simple, but very cool idea to integrate twitter search engine API with Yahoo API, it was released ! Very cool Twitter searching tool called twuet.  Search and be searched. I think this is Penguin Joe on their logo . Visit twuet.com for more details !</p>
<p><a href="http://twuet.com"><img class="alignnone" title="twuet" src="http://twuet.com/images/twuet.png" alt="" width="320" height="100" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://penguinationproject.com/search-twitter-and-watch-videos/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download Youtube Videos</title>
		<link>http://penguinationproject.com/download-youtube-videos</link>
		<comments>http://penguinationproject.com/download-youtube-videos#comments</comments>
		<pubDate>Mon, 01 Jun 2009 12:31:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[download penguin videos]]></category>
		<category><![CDATA[download youtube videos]]></category>

		<guid isPermaLink="false">http://penguinationproject.com/?p=53</guid>
		<description><![CDATA[
Good day to you Penguins ! Now you can download all our cartoons from youtube ! Take us with you to your laptop !
Download penguination project youtube  videos 
Youtube Video Collector is a great tool ! You can search and download any youtube videos online ! You just need internet connection !
]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" style="margin: 5px;" title="penguin" src="http://i.ytimg.com/vi/LYCfBpMwvno/2.jpg" alt="" width="120" height="90" /></p>
<p>Good day to you Penguins ! Now you can download all our cartoons from youtube ! Take us with you to your laptop !</p>
<p><a href="http://youtubevideocollector.com/search.php?keyurl=penguinationproject" target="_blank">Download penguination project youtube  videos </a></p>
<p>Youtube Video Collector is a great tool ! You can search and download any youtube videos online ! You just need internet connection !</p>
]]></content:encoded>
			<wfw:commentRss>http://penguinationproject.com/download-youtube-videos/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->