<?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>Wordpress API &#187; Open source</title>
	<atom:link href="http://wordpressapi.com/category/news/open-source/feed/" rel="self" type="application/rss+xml" />
	<link>http://wordpressapi.com</link>
	<description>Wordpress Tutorials, Tips, Code, Hacks, Themes, plugin, Developer Code book -Wordpress Code, Themes, Plugins, Tips, Tutorials, News, Releases, Designs, Hacks, Tricks, Blog</description>
	<lastBuildDate>Tue, 08 May 2012 17:37:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>smart way to use jquery in wordpress theme</title>
		<link>http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/</link>
		<comments>http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 20:04:21 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[Open source]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress api]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[dom]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[juqery]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[Wordpress Themes]]></category>

		<guid isPermaLink="false">http://wordpressapi.com/?p=6325</guid>
		<description><![CDATA[http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/I created many wordpress themes for various purpose and clients. Jquery is common requirement for all the project. That is for menu, slider or validation and for effects. In wordpress adding the Jquery is very easy because wordpress itself uses &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/<p>I created many wordpress themes for various purpose and clients. Jquery is common requirement for all the project. That is for menu, slider or validation and for effects. In wordpress adding the Jquery is very easy because wordpress itself uses the Jquery for admin panel. They provided the wordpress api for adding the jquery in wordpress theme files.</p>
<p><a rel="attachment wp-att-6326" href="http://wordpressapi.com/?attachment_id=6326"><img class="alignnone size-full wp-image-6326" title="smart way to use jquery in wordpress theme" src="http://images.wordpressapi.com/smart-way-to-use-jquery-in-wordpress-theme.png" alt="" width="420" height="375" /></a></p>
<p>Following is the simplest way to add jquery in wordpress theme.You just need to use the following code in your wordpress theme  functions.php file.</p>
<pre class="brush: php; title: ; notranslate">

function my_init() {
 if (!is_admin()) {
 wp_enqueue_script('jquery');
 }
}
add_action('init', 'my_init');
</pre>
<p>This way you can easily add the juqery in wordpress theme.</p>
<p>You can add the jquery from google also. Because google also like jquery. You just need to put the following function in your functions.php file.</p>
<pre class="brush: php; title: ; notranslate">
function my_init() {
	if (!is_admin()) {

		wp_register_script('jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js', false, '1.4.2');

	}
}
add_action('init', 'my_init');
</pre>
<p>Main reason adding jquery from google is that will load the jquery faster in your site.</p>
<h2>How you can use jquery in your theme.</h2>
<p>you can use the jquery anywhere in theme file as follows</p>
<pre class="brush: php; title: ; notranslate">

jQuery(function ($) {
 /* You can safely use $ in this code block to reference jQuery */
});
</pre>
<p>For DOM ready function or onload event you can use the juqery as follows.</p>
<pre class="brush: php; title: ; notranslate">

jQuery(document).ready(function($) {

//Your custom code will goes here.

})
</pre>
<p>You can use the above function for slider or menu and any effect in your wordpress theme.</p>
<h2>If you want to know about more Jquery and wordpress then you can refer following articles.</h2>
<p><a title="Permalink to wordpress and jquery conflicts – How to solve that" rel="bookmark" href="http://wordpressapi.com/2011/03/23/wordpress-and-jquery-conflicts-how-to-solve-that/">wordpress and jquery conflicts – How to solve that</a><br />
<a title="Permalink to 100+ jquery and CSS techniques and Tips and tutorials" rel="bookmark" href="http://wordpressapi.com/2011/03/10/100-jquery-css-techniques-tips-tutorials/">100+ jquery and CSS techniques and Tips and tutorials</a><br />
<a title="Permalink to jquery tips for wordpress theme developers" rel="bookmark" href="http://wordpressapi.com/2011/02/02/jquery-tips-wordpress-theme-developers/">jquery tips for wordpress theme developers</a><br />
<a title="Permalink to Fadein and Fadeout effect through javascript" rel="bookmark" href="http://wordpressapi.com/2010/09/11/fadein-fadeout-effect-javascript/">Fadein and Fadeout effect through javascript</a><br />
<a title="Permalink to minimize, restore, maximize and hide functionality with javascript without using jquery" rel="bookmark" href="http://wordpressapi.com/2010/07/04/minimize-restore-maximize-hide-functionality-javascript-jquery/">minimize, restore, maximize and hide functionality with javascript without using jquery</a><br />
<a title="Permalink to Complete Javascript form Validation now easy ( Checkbox, Websites, Email, Maxlength)" rel="bookmark" href="http://wordpressapi.com/2010/02/23/complete-javascript-form-validation-easy-checkbox-websites-email-maxlength/">Complete Javascript form Validation now easy ( Checkbox, Websites, Email, Maxlength)</a></p>
<p>If you face any issue using jquery with wordpress then please write comment or email me on support@wordpressapi.com</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/" title="how to use jquery in wordpress">how to use jquery in wordpress</a></li><li><a href="http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/" title="wordpress theme add jquery">wordpress theme add jquery</a></li><li><a href="http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/" title="wordpress jquery theme">wordpress jquery theme</a></li><li><a href="http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/" title="minimize restore maximize and hide functionality with javascript without using jquery">minimize restore maximize and hide functionality with javascript without using jquery</a></li><li><a href="http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/" title="add jquery script to functions php and send to js folder in theme">add jquery script to functions php and send to js folder in theme</a></li><li><a href="http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/" title="smartmenu jquery wordpress">smartmenu jquery wordpress</a></li><li><a href="http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/" title="use jquery in wordpress page template">use jquery in wordpress page template</a></li><li><a href="http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/" title="use jquery theme without javascript">use jquery theme without javascript</a></li><li><a href="http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/" title="wordpress include jquery in php template file">wordpress include jquery in php template file</a></li><li><a href="http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/" title="smart way to use if function in php">smart way to use if function in php</a></li><li><a href="http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/" title="related jquries of jqueryforadmin">related jquries of jqueryforadmin</a></li><li><a href="http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/" title="re-adding jquery to wordpress">re-adding jquery to wordpress</a></li><li><a href="http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/" title="jquery wp plugin">jquery wp plugin</a></li><li><a href="http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/" title="jquery effects wordpress">jquery effects wordpress</a></li><li><a href="http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/" title="include jquery in wordpress theme html">include jquery in wordpress theme html</a></li><li><a href="http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/" title="adding jquery to wordpress theme">adding jquery to wordpress theme</a></li><li><a href="http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/" title="adding jquery to wordpress 2011">adding jquery to wordpress 2011</a></li><li><a href="http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/" title="add jquery to wordpress theme">add jquery to wordpress theme</a></li><li><a href="http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/" title="wordpress where to put custom jquery">wordpress where to put custom jquery</a></li></ul><p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2011/03/23/smart-way-to-use-jquery-in-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>wordpress plugins for stats or statistics</title>
		<link>http://wordpressapi.com/2011/03/21/wordpress-plugins-stats-statistics/</link>
		<comments>http://wordpressapi.com/2011/03/21/wordpress-plugins-stats-statistics/#comments</comments>
		<pubDate>Mon, 21 Mar 2011 18:55:16 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[dashboard]]></category>
		<category><![CDATA[graph]]></category>
		<category><![CDATA[interface stats]]></category>
		<category><![CDATA[metrics]]></category>
		<category><![CDATA[stat]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[traffic]]></category>
		<category><![CDATA[wordpress plugins]]></category>
		<category><![CDATA[wp plugin]]></category>
		<category><![CDATA[wp stat]]></category>
		<category><![CDATA[wp statistics]]></category>

		<guid isPermaLink="false">http://wordpressapi.com/?p=6297</guid>
		<description><![CDATA[http://wordpressapi.com/2011/03/21/wordpress-plugins-stats-statistics/For wordpress website wordpress stats plugins are very important. For checking how much visitors are visited our site. You just need to install following any plugin in your wordpress. Here we created most famous wordpress plugins which are useful for &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2011/03/21/wordpress-plugins-stats-statistics/<p>For wordpress website wordpress stats plugins are very important. For checking how much visitors are visited our site. You just need to install following any plugin in your wordpress. Here we created most famous wordpress plugins which are useful for adding the statistics to your website.</p>
<p><a rel="attachment wp-att-6298" href="http://wordpressapi.com/2011/03/21/wordpress-plugins-stats-statistics/wordpress-stats-plugins/"><img class="alignnone size-full wp-image-6298" title="wordpress-stats-plugins" src="http://images.wordpressapi.com/wordpress-stats-plugins.png" alt="" width="764" height="278" /></a></p>
<h2>WordPress.com Stats</h2>
<p><a title="stats" href="http://wordpress.org/extend/plugins/stats/" target="_blank">http://wordpress.org/extend/plugins/stats/</a><br />
There are hundreds of plugins and services which can provide statistics about your visitors. However I found that even though something like Google Analytics provides an incredible depth of information, it can be overwhelming and doesn&#8217;t really highlight what&#8217;s most interesting to me as a writer. That&#8217;s why Automattic created its own stats system, to focus on just the most popular metrics a blogger wants to track and provide them in a clear and concise interface.</p>
<p>Installing this stats plugin is much like installing Akismet, all you need is to put in your API Key and the rest is automatic.</p>
<h2>WP-Stats-Dashboard</h2>
<p><a title="wp stats dashboard" href="http://wordpress.org/extend/plugins/wp-stats-dashboard/" target="_blank">http://wordpress.org/extend/plugins/wp-stats-dashboard/</a><br />
Display your blog&#8217;s stats graph plus your blog traffic, social engagement and social influence directly in your dashboard. See how you&#8217;re ranking on Alexa, check out your Technorati authority, monitor your ranking across multiple sites and much more. Once you install this plugin you&#8217;ll wonder how you ever managed to track your social media worth without it.</p>
<h2>Feed Stats for WordPress</h2>
<p><a title="feed stats plugin" href="http://wordpress.org/extend/plugins/feed-stats-plugin/" target="_blank">http://wordpress.org/extend/plugins/feed-stats-plugin/</a><br />
Feed Stats for WordPress is a plugin that allows you to view your FeedBurner feed stats from inside of the WordPress admin interface.<br />
Stats for your feed can be viewed from the &#8220;Feed Stats&#8221; page in the &#8220;Dashboard&#8221; section of WordPress.</p>
<h2>iRedlof Google Analytics Stats</h2>
<p><a title="google analytics stats" href="http://wordpress.org/extend/plugins/iredlof-google-analytics-stats/" target="_blank">http://wordpress.org/extend/plugins/iredlof-google-analytics-stats/</a><br />
iRedlof Google Analytics(GA) Stats is a wordpess admin panel plugin, I developed it cos i like to manage everything from one place. This plugin is like wordpress .com stats plugin but the difference between the two is that wordpress.com stats works with wordpress analytics stats system and iRedlof GA Stats works with google analytics stats system. Using this plugin, you get your GA stats straight from your account on google to your wordpress admin panel. Right now this plugin is in development phase and only have limited features i.e. visits/day, pageviews/day, etc to focus on just the most popular metrics a blogger wants to track and provide them in a clear and concise interface, but the full version will be loaded will all the features of google analytics which will provide you with an incredible depth of information. To use this plugin you need google analytics account.</p>
<h2>Runescape User Stats</h2>
<p><a title="runescape user stats" href="http://wordpress.org/extend/plugins/runescape-user-stats/" target="_blank">http://wordpress.org/extend/plugins/runescape-user-stats/</a><br />
A very simple plugin to add runescape game stats on any page of the wordpress blog. This plugin allows blog owner to show th stats for any user on a page and post. This plugin also allows to display multiple runescape stats. you can visit the author website Rakesh Muraharishetty to view the authors game stats. Alternatively visit the plugin homepage Runescape Guide for updates and discuss the stats plugin for future enhancements.</p>
<h2>WP-Stats</h2>
<p><a title="wp stats" href="http://wordpress.org/extend/plugins/wp-stats/" target="_blank">http://wordpress.org/extend/plugins/wp-stats/</a><br />
Display your WordPress blog statistics. Ranging from general total statistics, some of my plugins statistics and top 10 statistics.</p>
<h2>WordPress.com Stats Helper</h2>
<p><a title="wordpresscom stats helper" href="http://wordpress.org/extend/plugins/wordpresscom-stats-helper/" target="_blank">http://wordpress.org/extend/plugins/wordpresscom-stats-helper/</a><br />
This plugin helps you retrieve data from wordpress.com stats and put it on your blog.</p>
<h2>Simple Stats Widget</h2>
<p><a title="simple stats widget" href="http://wordpress.org/extend/plugins/simple-stats-widget/" target="_blank">http://wordpress.org/extend/plugins/simple-stats-widget/</a><br />
This widget to record and display the last N visitor areas, from and time, and search engine access, installation and use is very simple.</p>
<h2>Here is link for more useful wordpress plugins for various purposes.</h2>
<p><a title="wordpress plugins" href="http://wordpressapi.com/wordpress-plugins/" target="_blank">wordpress-plugins/</a></p>
<p><a title="ecommerce wordpress plugins" href="http://wordpressapi.com/2011/03/15/wordpress-plugins-ecommerce-site/" target="_blank">wordpress-plugins-ecommerce-site</a></p>
<p><a title="image gallery wordpress plugins" href="http://wordpressapi.com/2010/07/17/downloaded-free-wordpress-image-gallery-plugins/" target="_blank">downloaded-free-wordpress-image-gallery-plugins</a></p>
<p><a title="most popular wordpress plugins" href="http://wordpressapi.com/2010/06/28/15-top-popular-wordpress-plugins/" target="_blank">15-top-popular-wordpress-plugins</a></p>
<p><a title="amazing 100 wordpress plugins" href="http://wordpressapi.com/2010/06/26/amazing-100-plugins-wordpress/" target="_blank">amazing-100-plugins-wordpress</a></p>
<p><a title="ten wordpress plugins for improve user interactivity and experience" href="http://wordpressapi.com/2010/06/20/ten-wordpress-plugins-for-improve-the-user-interactivity-and-experience/" target="_blank">ten-wordpress-plugins-for-improve-the-user-interactivity-and-experience</a></p>
<p><a title="wordpress plugins for bloggers" href="http://wordpressapi.com/2010/06/19/wordpress-plugins-bloggers/" target="_blank">wordpress-plugins-bloggers</a></p>
<p><a title="best wordpress plugins for creating forums in wordpress" href="http://wordpressapi.com/2010/02/25/best-wordpress-plugins-for-creating-forums-in-wordpress/" target="_blank">best-wordpress-plugins-for-creating-forums-in-wordpress</a></p>
<p><a title="real estate wordpress plugins" href="http://wordpressapi.com/2010/02/21/10-real-estate-wordpress-plugins/" target="_blank">10-real-estate-wordpress-plugins</a></p>
<p><a title="sixteen wordpress plugins every wordpress blogger need to install" href="http://wordpressapi.com/2010/02/01/16-wordpress-plugins-wordpress-blog-install/" target="_blank">16-wordpress-plugins-wordpress-blog-install</a></p>
<p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2011/03/21/wordpress-plugins-stats-statistics/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>How to check robots.txt is fle</title>
		<link>http://wordpressapi.com/2011/02/09/check-robots-txt-fle/</link>
		<comments>http://wordpressapi.com/2011/02/09/check-robots-txt-fle/#comments</comments>
		<pubDate>Wed, 09 Feb 2011 17:48:31 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[care]]></category>
		<category><![CDATA[checker]]></category>
		<category><![CDATA[Checking]]></category>
		<category><![CDATA[Disallow]]></category>
		<category><![CDATA[Engine]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[ful]]></category>
		<category><![CDATA[gz]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[result]]></category>
		<category><![CDATA[robots]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[search engine result]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[Sitemap]]></category>
		<category><![CDATA[User-agent]]></category>
		<category><![CDATA[varification]]></category>
		<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[witten]]></category>
		<category><![CDATA[wordpressapi]]></category>

		<guid isPermaLink="false">http://wordpressapi.com/?p=5998</guid>
		<description><![CDATA[http://wordpressapi.com/2011/02/09/check-robots-txt-fle/For Checking robots.txt file you should go for following website I really like this website. http://tool.motoricerca.info/robots-checker.phtml Robots.txt file is very important for Search Engine. If this file is not witten in proper way then search engine will crawl your site &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2011/02/09/check-robots-txt-fle/<p>For Checking robots.txt file you should go for following website I really like this website.</p>
<p>http://tool.motoricerca.info/robots-checker.phtml</p>
<p>Robots.txt file is very important for Search Engine. If this file is not witten in proper way then search engine will crawl your site and your website never come in search engine result so you need to be very care ful about this file.</p>
<p>You should write your robots.txt file following way.</p>
<pre class="brush: php; title: ; notranslate">

User-agent: *
Disallow:

Sitemap: http://wordpressapi.com/sitemap.xml.gz
# WordPressAPI.com 18 April 2010
</pre>
<p><a href="http://wordpressapi.com/2011/02/09/check-robots-txt-fle/robot-search/" rel="attachment wp-att-6108"><img src="http://images.wordpressapi.com/robot-search.png" alt="" title="robot-search" width="238" height="245" class="alignnone size-full wp-image-6108" /></a></p>
<p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2011/02/09/check-robots-txt-fle/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>domain search through Linux command</title>
		<link>http://wordpressapi.com/2011/02/02/domain-search-linux-command/</link>
		<comments>http://wordpressapi.com/2011/02/02/domain-search-linux-command/#comments</comments>
		<pubDate>Wed, 02 Feb 2011 19:35:23 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[domain search]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://wordpressapi.com/?p=5942</guid>
		<description><![CDATA[http://wordpressapi.com/2011/02/02/domain-search-linux-command/Searching the domain information through command line. You can search the domain using the Linux command. #whois google.com using the following command you can find the all domain information. If you want check when domain created then use following command. &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2011/02/02/domain-search-linux-command/<p>Searching the domain information through command line. You can search the domain using the Linux command.</p>
<p>#whois google.com</p>
<p>using the following command you can find the all domain information.<br />
<a href="http://wordpressapi.com/2011/02/02/domain-search-linux-command/linux-domain-search/" rel="attachment wp-att-6076"><img src="http://images.wordpressapi.com/linux-domain-search.jpg" alt="" title="linux-domain-search" width="400" height="319" class="alignnone size-full wp-image-6076" /></a><br />
If you want check when domain created then use following command.</p>
<p>#whois google.com | grep &#8220;Created | Creation&#8221;</p>
<p>If you want to create PHP script for domain search then use following code</p>
<pre class="brush: php; title: ; notranslate">

$domain_info = exec(&quot;whois google.com | grep 'Created |Creation'&quot;);

if($domain_info =''){

echo &quot;Domain is not yet registered&quot;;

} else {

echo $domain_info = exec(&quot;whois google.com&quot;);

}
</pre>
<p>Above script will only work in Linux server.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpressapi.com/2011/02/02/domain-search-linux-command/" title="access wordpress api domain">access wordpress api domain</a></li><li><a href="http://wordpressapi.com/2011/02/02/domain-search-linux-command/" title="whois domain wordpress api">whois domain wordpress api</a></li></ul><p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2011/02/02/domain-search-linux-command/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Checking directory and deleting the all one day old files from folder through php</title>
		<link>http://wordpressapi.com/2011/02/02/checking-directory-deleting-day-files-folder-php/</link>
		<comments>http://wordpressapi.com/2011/02/02/checking-directory-deleting-day-files-folder-php/#comments</comments>
		<pubDate>Wed, 02 Feb 2011 19:29:35 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://wordpressapi.com/?p=5936</guid>
		<description><![CDATA[http://wordpressapi.com/2011/02/02/checking-directory-deleting-day-files-folder-php/If you want to find the old files from your system or server then you can use the following code. I used the following code for deleting the old files form system. For deleting the old files from system I &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2011/02/02/checking-directory-deleting-day-files-folder-php/<p>If you want to find the old files from your system or server then you can use the following code. I used the following code for deleting the old files form system.</p>
<pre class="brush: php; title: ; notranslate">

/*****************Get the path to Extension ****************/
$array_path = explode(&quot;/&quot;,$_SERVER['SCRIPT_FILENAME']);
&lt;div id=&quot;:2e&quot;&gt;$dynamic_path = &quot;&quot;;
for ($i=0;$i&lt;sizeof($array_path)-1;$i++)
 if($array_path[$i]!=&quot;&quot;)
$dynamic_path =$dynamic_path.&quot;/&quot;.$array_path[$i];

// This linux command will delete the one day older from specific folder.
exec(&quot;find &quot;.$dynamic_path.&quot;* -mtime +1 -exec rm {} \;&quot;);&lt;/div&gt;
&lt;div&gt;</pre>
<div>For deleting the old files from system I used the Linux command. You can execute the command using the exec function.</div>
<div>If you want to use the Linux command then use the following command</div>
<div># find /home/user/test/ -m<a href="http://wordpressapi.com/2011/02/02/checking-directory-deleting-day-files-folder-php/linux-files/" rel="attachment wp-att-6073"><img src="http://images.wordpressapi.com/linux-files.jpg" alt="" title="linux-files" width="400" height="300" class="alignnone size-full wp-image-6073" /></a>time +1 exec rm {}</div>
<div>Above code will only work in Linux server.</div>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpressapi.com/2011/02/02/checking-directory-deleting-day-files-folder-php/" title="home linux server">home linux server</a></li><li><a href="http://wordpressapi.com/2011/02/02/checking-directory-deleting-day-files-folder-php/" title="linux for you">linux for you</a></li><li><a href="http://wordpressapi.com/2011/02/02/checking-directory-deleting-day-files-folder-php/" title="rm -rf Linux">rm -rf Linux</a></li><li><a href="http://wordpressapi.com/2011/02/02/checking-directory-deleting-day-files-folder-php/" title="root linux">root linux</a></li></ul><p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2011/02/02/checking-directory-deleting-day-files-folder-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Checking directory and deleting the all one day old files from folder in windows through php</title>
		<link>http://wordpressapi.com/2011/01/31/checking-directory-deleting-day-files-folder-windows-php/</link>
		<comments>http://wordpressapi.com/2011/01/31/checking-directory-deleting-day-files-folder-windows-php/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 18:24:28 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://wordpressapi.com/?p=5939</guid>
		<description><![CDATA[http://wordpressapi.com/2011/01/31/checking-directory-deleting-day-files-folder-windows-php/For deleting the files from folder in any system (windows or linux). I created the PHP script for deleting the old files from system. Earlier I created the script for deleting files from folder but that was for only linux. &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2011/01/31/checking-directory-deleting-day-files-folder-windows-php/<p>For deleting the files from folder in any system (windows or linux). I created the PHP script for deleting the old files from system.</p>
<p>Earlier I created the script for deleting files from folder but that was for only linux. Then I created script which will work independently. Following script will work in mac or windows or linux.</p>
<pre class="brush: php; title: ; notranslate">
 /***************** Delete one day old files ****************/
 $dir = &quot;C://Inetpub/vhosts/yourdomain/tmpfiles&quot;;

 if (is_dir($dir)) {
 if ($dh = opendir($dir)) {
 while ($file = readdir($dh)) {
 if(!is_dir($dir.$file)) {
 if (filemtime($dir.DIRECTORY_SEPARATOR.$file) &lt;     strtotime('-1 days')) { //if 1 days old, delete
&lt;div id=&quot;:1o&quot;&gt;echo &quot;Deleting $dir.$file (old)\n&quot;;
 unlink($dir.$file);
 }
 }
 }
 } else {
echo &quot;ERROR. Could not open directory: $dir\n&quot;;
 }
 } else {
 echo &quot;ERROR. Specified path is not a directory: $dir\n&quot;;
 }
 closedir($dh);

// Above script is platform independent.&lt;/div&gt;
</pre>
<p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2011/01/31/checking-directory-deleting-day-files-folder-windows-php/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Free 40+ Professional 3 Column WordPress Themes</title>
		<link>http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/</link>
		<comments>http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/#comments</comments>
		<pubDate>Sun, 19 Dec 2010 06:16:20 +0000</pubDate>
		<dc:creator>Mahesh</dc:creator>
				<category><![CDATA[Open source]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress news]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[wordpress technology]]></category>

		<guid isPermaLink="false">http://images.wordpressapi.com/?p=5474</guid>
		<description><![CDATA[http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/Many people are somtimes searching for 3 column wordpress themes. I found very professional 3 columns worpdress themes and I made a very nice list of wordpress themes. In this post you can view demo and for download theme you&#8217;ve &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/<p>Many people are somtimes searching for 3 column wordpress themes. I found very professional 3 columns worpdress themes and I made a very nice list of wordpress themes. In this post you can view demo and for download theme you&#8217;ve to click on image of theme. So enjoy them and don&#8217;t forget to share! Thanks.</p>
<h2>1. <a href="http://bizzartic.com/2009/08/28/pure-magazine-wordpress-theme/">Pure Magazine</a></h2>
<h2>[ <a href="http://bizzartic.com/bizzthemes/puremagazine/">Demo</a> ]</h2>
<p><a rel="attachment wp-att-5523" href="http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/professional-3-coloumn-wordpress-themes/"><img class="alignnone size-full wp-image-5523" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes.jpg" alt="" width="600" height="762" /></a></p>
<h2>2. <a href="http://www.fresheezy.com/theme/3370-Bright-White">Bright-White</a></h2>
<h2>[ <a href="http://www.hablogs.com/demo/index.php?wptheme=Bright-White">Demo</a> ]</h2>
<p><a rel="attachment wp-att-5619" href="http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/professional-3-coloumn-wordpress-themes-2/"><img class="alignnone size-full wp-image-5619" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-2.jpg" alt="" width="600" height="525" /></a></p>
<h2>3. <a href="http://newwpthemes.com/wordpress-theme/blue-news/">Blue News</a></h2>
<h2>[ <a href="http://newwpthemes.com/demo/BlueNews/">Demo</a> ]</h2>
<p><a href="http://newwpthemes.com/wordpress-theme/blue-news/"><img class="alignnone size-full wp-image-5620" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-3.jpg" alt="" width="600" height="509" /></a></p>
<h2>4. <a href="http://www.web2feel.com/aristo/">Aristo</a></h2>
<h2>[ <a href="http://www.jinsonathemes.com/demo/?themedemo=aristo">Demo</a> ]</h2>
<p><a href="http://www.web2feel.com/aristo/"><img class="alignnone size-full wp-image-5621" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-4.jpg" alt="" width="600" height="459" /></a></p>
<h2>5. <a href="http://templatic.com/freethemes/wp-premium">WP Premium</a></h2>
<h2>[ <a href="http://templatic.com/demos/?theme=wppremium">Demo</a> ]</h2>
<p><a href="http://templatic.com/freethemes/wp-premium"><img class="alignnone size-full wp-image-5622" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-5.jpg" alt="" width="600" height="425" /></a></p>
<h2>6. <a href="http://www.clone24.com/free-wordpress-themes/freshblog-a-free-premium-wordpress-theme/">Freshblog</a></h2>
<h2>[ <a href="http://www.clone24.com/goto/http://www.bestwp.net/demo/freshblog/">Demo</a> ]</h2>
<p><a href="http://www.clone24.com/free-wordpress-themes/freshblog-a-free-premium-wordpress-theme/"><img class="alignnone size-full wp-image-5623" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-6.jpg" alt="" width="600" height="626" /></a></p>
<h2>7. <a href="http://www.bestwpthemes.com/fervens/">Fervens</a></h2>
<h2>[ <a href="http://wp-themes.designdisease.com/testrun/?theme=fervens-b">Demo</a> ]</h2>
<p><a href="http://www.bestwpthemes.com/fervens/"><img class="alignnone size-full wp-image-5624" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-7.jpg" alt="" width="600" height="394" /></a></p>
<h2>8. <a href="http://yoshz.com/free-themes/free-wordpress-theme-fantomalist/">Fantomalist</a></h2>
<h2>[ <a href="http://yoshz.com/theme/?wptheme=Fantom">Demo</a> ]</h2>
<p><a href="http://yoshz.com/free-themes/free-wordpress-theme-fantomalist/"><img class="alignnone size-full wp-image-5625" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-8.jpg" alt="" width="600" height="911" /></a></p>
<h2>9. <a href="http://www.blogohblog.com/wordpress-theme-dailypress/">DailyPress</a></h2>
<h2>[ <a href="http://wpthemes.blogohblog.net/index.php?wptheme=dailypress">Demo</a> ]</h2>
<p><a href="http://www.blogohblog.com/wordpress-theme-dailypress/"><img class="alignnone size-full wp-image-5626" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-9.jpg" alt="" width="600" height="474" /></a></p>
<h2>10. <a href="http://www.bestwpthemes.com/carrington/">Carrington</a></h2>
<h2>[ <a href="http://carringtontheme.com/">Demo</a> ]</h2>
<p><a href="http://www.bestwpthemes.com/carrington/"><img class="alignnone size-full wp-image-5627" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-10.jpg" alt="" width="600" height="456" /></a></p>
<h2>11. <a href="http://speckyboy.com/2010/01/06/worn-wall-free-grungy-three-column-wordpress-theme/">Worn Wall</a></h2>
<h2>[ <a href="http://www.templatelite.com/download/preview.php?theme=32">Demo</a> ]</h2>
<p><a href="http://speckyboy.com/2010/01/06/worn-wall-free-grungy-three-column-wordpress-theme/"><img class="alignnone size-full wp-image-5628" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-11.jpg" alt="" width="600" height="472" /></a></p>
<h2>12. <a href="http://graphpaperpress.com/themes/work-a-holic/">Work-a-holic</a></h2>
<h2>[ <a href="http://demo.graphpaperpress.com/workaholic/">Demo</a> ]</h2>
<p><a href="http://graphpaperpress.com/themes/work-a-holic/"><img class="alignnone size-full wp-image-5629" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-12.jpg" alt="" width="600" height="409" /></a></p>
<h2>13. <a href="http://www.freethemelayouts.com/showcase/unwind-wordpress-theme/">Unwind</a></h2>
<h2>[ <a href="http://www.freethemelayouts.com/blog/index.php?wptheme=unwind">Demo</a> ]</h2>
<p><a href="http://www.freethemelayouts.com/showcase/unwind-wordpress-theme/"><img class="alignnone size-full wp-image-5630" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-13.jpg" alt="" width="600" height="462" /></a></p>
<h2>14. <a href="http://www.siiimple.com/un-complicated-wordpress-theme">Un.complicated</a></h2>
<h2>[ <a href="http://s51370.gridserver.com/_uncomplicated/">Demo</a> ]</h2>
<p><a href="http://www.siiimple.com/un-complicated-wordpress-theme"><img class="alignnone size-full wp-image-5631" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-14.jpg" alt="" width="600" height="457" /></a></p>
<h2>15. <a href="http://www.siiimple.com/the-standard">The Standard</a></h2>
<h2>[ <a href="http://s51370.gridserver.com/_1212/">Demo</a> ]</h2>
<p><a href="http://www.siiimple.com/the-standard"><img class="alignnone size-full wp-image-5632" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-15.jpg" alt="" width="600" height="467" /></a></p>
<h2>16. <a href="http://www.woothemes.com/2010/06/themorningafter/">The Morning After</a></h2>
<h2>[ <a href="http://www.woothemes.com/demo/?name=themorningafter">Demo</a> ]</h2>
<p><a href="http://www.woothemes.com/2010/06/themorningafter/"><img class="alignnone size-full wp-image-5633" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-16.jpg" alt="" width="600" height="464" /></a></p>
<h2>17. <a href="http://www.bestwpthemez.com/wordpress/neoblue-3-columns-right-sidebar-wordpress-theme-3140/">Neoblue</a></h2>
<h2>[ <a href="http://themedemo.bestwpthemez.com/index.php?wptheme=Neoblue">Demo</a> ]</h2>
<p><a href="http://www.bestwpthemez.com/wordpress/neoblue-3-columns-right-sidebar-wordpress-theme-3140/"><img class="alignnone size-full wp-image-5634" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-17.jpg" alt="" width="600" height="365" /></a></p>
<h2>18. <a href="http://www.wordpressthemesbook.com/mercury/">Mercury</a></h2>
<h2>[ <a href="http://www.wordpressthemesbook.com/themedemo/go.php?url=http://www.wordpressthemesbook.com/demo/mercury/">Demo</a> ]</h2>
<p><a href="http://www.wordpressthemesbook.com/mercury/"><img class="alignnone size-full wp-image-5635" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-18.jpg" alt="" width="600" height="454" /></a></p>
<h2>19. <a href="http://www.magpress.com/wordpress-themes/maglossv2.html">Magloss V2</a></h2>
<h2>[ <a href="http://demo.magpress.com/?wptheme=Magloss_V2">Demo</a> ]</h2>
<p><a href="http://www.magpress.com/wordpress-themes/maglossv2.html"><img class="alignnone size-full wp-image-5636" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-19.jpg" alt="" width="600" height="635" /></a></p>
<h2>20. <a href="http://newwpthemes.com/wordpress-theme/liliya/">Liliya</a></h2>
<h2>[ <a href="http://newwpthemes.com/demo/Liliya/">Demo</a> ]</h2>
<p><a href="http://newwpthemes.com/wordpress-theme/liliya/"><img class="alignnone size-full wp-image-5637" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-20.jpg" alt="" width="600" height="495" /></a></p>
<h2>21. <a href="http://5thirtyone.com/grid-focus">Grid Focus</a></h2>
<h2>[ <a href="http://demo.5thirtyone.com/">Demo</a> ]</h2>
<p><a href="http://5thirtyone.com/grid-focus"><img class="alignnone size-full wp-image-5638" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-21.jpg" alt="" width="600" height="409" /></a></p>
<h2>22. <a href="http://www.siiimple.com/tdg-theme">The Daily Grind</a></h2>
<h2>[ <a href="http://s51370.gridserver.com/wordpress/">Demo</a> ]</h2>
<p><a href="http://www.siiimple.com/tdg-theme"><img class="alignnone size-full wp-image-5639" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-22.jpg" alt="" width="600" height="409" /></a></p>
<h2>23. <a href="http://wordpress.org/extend/themes/smooth">Smooth</a></h2>
<h2>[ <a href="http://wp-themes.com/smooth?TB_iframe=true&amp;width=1473&amp;height=760">Demo</a> ]</h2>
<p><a href="http://wordpress.org/extend/themes/smooth"><img class="alignnone size-full wp-image-5640" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-23.jpg" alt="" width="600" height="506" /></a></p>
<h2>24. <a href="http://shakenandstirredweb.com/331/introducing-our-first-free-wordpress-theme-shaken-grid">Shaken Grid</a></h2>
<h2>[ <a href="http://shakenandstirredweb.com/themes/">Demo</a> ]</h2>
<p><a href="http://shakenandstirredweb.com/331/introducing-our-first-free-wordpress-theme-shaken-grid"><img class="alignnone size-full wp-image-5641" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-24.jpg" alt="" width="600" height="461" /></a></p>
<h2>25. <a href="http://www.wpthemedesigner.com/2010/01/22/pixdesign-v2-theme/">PixDesign Silver</a></h2>
<h2>[ <a href="http://wpthemedesigner.com/demo/index.php?wptheme=PixDesign-Silver">Demo</a> ]</h2>
<p><a href="http://www.wpthemedesigner.com/2010/01/22/pixdesign-v2-theme/"><img class="alignnone size-full wp-image-5642" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-25.jpg" alt="" width="600" height="462" /></a></p>
<h2>26. <a href="http://www.paddsolutions.com/wordpress-theme-oxygenous/">Oxygenous</a></h2>
<h2>[ <a href="http://www.paddsolutions.com/wpmag/oxygenous/">Demo</a> ]</h2>
<p><a href="http://www.paddsolutions.com/wordpress-theme-oxygenous/"><img class="alignnone size-full wp-image-5643" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-26.jpg" alt="" width="600" height="471" /></a></p>
<h2>27. <a href="http://www.fresheezy.com/theme/5233-Mainam-Vintage">Mainam Vintage</a></h2>
<h2>[ <a href="http://www.paddsolutions.com/wpmag/mainam/?wptheme=mainam-vintage">Demo</a> ]</h2>
<p><a href="http://www.fresheezy.com/theme/5233-Mainam-Vintage"><img class="alignnone size-full wp-image-5644" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-27.jpg" alt="" width="600" height="466" /></a></p>
<h2>28. <a href="http://www.woothemes.com/2009/02/irresistible/">Irresistible</a></h2>
<h2>[ <a href="http://www.woothemes.com/demo/?name=irresistible">Demo</a> ]</h2>
<p><a href="http://www.woothemes.com/2009/02/irresistible/"><img class="alignnone size-full wp-image-5645" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-28.jpg" alt="" width="600" height="487" /></a></p>
<h2>29. <a href="http://www.bestwpthemes.com/grass-roots/">Grass Roots</a></h2>
<h2>[ <a href="http://grassroots.wellmedicated.com/">Demo</a> ]</h2>
<p><a href="http://www.bestwpthemes.com/grass-roots/"><img class="alignnone size-full wp-image-5646" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-29.jpg" alt="" width="600" height="394" /></a></p>
<h2>30. <a href="http://freebiesdock.com/freemium-wordpress-theme/">FREEmium</a></h2>
<h2>[ <a href="http://demo.freebiesdock.com/">Demo</a> ]</h2>
<p><a href="http://freebiesdock.com/freemium-wordpress-theme/"><img class="alignnone size-full wp-image-5647" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-30.jpg" alt="" width="600" height="461" /></a></p>
<h2>31. <a href="http://www.magpress.com/wordpress-themes/econox.html.">EcoNox</a></h2>
<h2>[ <a href="http://demo.magpress.com/?wptheme=EcoNox">Demo</a> ]</h2>
<p><a href="http://www.magpress.com/wordpress-themes/econox.html"><img class="alignnone size-full wp-image-5648" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-31.jpg" alt="" width="600" height="576" /></a></p>
<h2>32. <a href="http://newwpthemes.com/wordpress-theme/demet/">Demet</a></h2>
<h2>[ <a href="http://newwpthemes.com/demo/Demet/">Demo</a> ]</h2>
<p><a href="http://newwpthemes.com/wordpress-theme/demet/"><img class="alignnone size-full wp-image-5649" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-32.jpg" alt="" width="600" height="457" /></a></p>
<h2>33. <a href="http://www.thomasveit.com/bluebubble-free-premium-wordpress-portfolio-theme/">BlueBubble</a></h2>
<h2>[ <a href="http://wordpress.thomasveit.com/">Demo</a> ]</h2>
<p><a href="http://www.thomasveit.com/bluebubble-free-premium-wordpress-portfolio-theme/"><img class="alignnone size-full wp-image-5650" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-33.jpg" alt="" width="600" height="442" /></a></p>
<h2>34. <a href="http://www.web2feel.com/atlantis/">Atlantis</a></h2>
<h2>[ <a href="http://www.jinsonathemes.com/fabs/?themedemo=Atlantis">Demo</a> ]</h2>
<p><a href="http://www.web2feel.com/atlantis/"><img class="alignnone size-full wp-image-5651" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-34.jpg" alt="" width="600" height="486" /></a></p>
<h2>35. <a href="http://www.wpexplorer.com/artwork-wordpress-theme.html">Artwork</a></h2>
<h2>[ <a href="http://www.ezwpthemes.com/examples/?wptheme=Artwork&amp;cat=120">Demo</a> ]</h2>
<p><a href="http://www.wpexplorer.com/artwork-wordpress-theme.html"><img class="alignnone size-full wp-image-5652" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-35.jpg" alt="" width="600" height="501" /></a></p>
<h2>36. <a href="http://www.bestwpthemez.com/wordpress/welding-right-sidebar-widget-supported-wordpress-theme-3707/">Welding</a></h2>
<h2>[ <a href="http://themedemo.bestwpthemez.com/index.php?wptheme=Welding">Demo</a> ]</h2>
<p><a href="http://www.bestwpthemez.com/wordpress/welding-right-sidebar-widget-supported-wordpress-theme-3707/"><img class="alignnone size-full wp-image-5653" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-36.jpg" alt="" width="600" height="406" /></a></p>
<h2>37. <a href="http://topwpthemes.com/solio/">Solio</a></h2>
<h2>[ <a href="http://wpthemes.toptut.com/index.php?wptheme=Solio">Demo</a> ]</h2>
<p><a href="http://topwpthemes.com/solio/"><img class="alignnone size-full wp-image-5654" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-37.jpg" alt="" width="600" height="487" /></a></p>
<h2>38. <a href="http://www.dynamicwp.net/free-themes/simple-magazine-red/">Simple Magazine Red</a></h2>
<h2>[ <a href="http://www.dynamicwp.net/demo/?preview_theme=Simple-Magazine-Red">Demo</a> ]</h2>
<p><a href="http://www.dynamicwp.net/free-themes/simple-magazine-red/"><img class="alignnone size-full wp-image-5655" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-38.jpg" alt="" width="600" height="435" /></a></p>
<h2>39. <a href="http://www.simplewpthemes.com/2010/08/riviera-magazine/">Riviera Magazine</a></h2>
<h2>[ <a href="http://www.simplewpthemes.com/demo/theme/?wptheme=RivieraMagazine">Demo</a> ]</h2>
<p><a href="http://www.simplewpthemes.com/2010/08/riviera-magazine/"><img class="alignnone size-full wp-image-5656" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-39.jpg" alt="" width="600" height="469" /></a></p>
<h2>40. <a href="http://www.wpthemedesigner.com/2008/11/28/rewire-theme/">Rewire Theme</a></h2>
<h2>[ <a href="http://wpthemedesigner.com/demo/index.php?wptheme=Rewire+Theme">Demo</a> ]</h2>
<p><a href="http://www.wpthemedesigner.com/2008/11/28/rewire-theme/"><img class="alignnone size-full wp-image-5657" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-40.jpg" alt="" width="600" height="411" /></a></p>
<h2>41. <a href="http://www.bestwpthemez.com/wordpress/red-light-physics-leftright-sidebar-wordpress-theme-5919/">Red Light Physics</a></h2>
<h2>[ <a href="http://themedemo.bestwpthemez.com/index.php?wptheme=Red%20Light">Demo</a> ]</h2>
<p><a href="http://www.bestwpthemez.com/wordpress/red-light-physics-leftright-sidebar-wordpress-theme-5919/"><img class="alignnone size-full wp-image-5658" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-41.jpg" alt="" width="600" height="356" /></a></p>
<h2>42. <a href="http://www.paddsolutions.com/wordpress-theme-woodtastic">Woodtastic</a></h2>
<h2>[ <a href="http://www.paddsolutions.com/wpthemes/switch.php?template=woodtastic">Demo</a> ]</h2>
<p><a href="http://www.paddsolutions.com/wordpress-theme-woodtastic"><img class="alignnone size-full wp-image-5659" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-42.jpg" alt="" width="600" height="412" /></a></p>
<h2>43. <a href="http://blogsessive.com/blogging-tools/simple-balance-free-simple-wordpress-theme/">Simple Balance 2.0</a></h2>
<h2>[ <a href="http://demo.blogsessive.com/index.php?wptheme=Simple+Balance">Demo</a> ]</h2>
<p><a href="http://blogsessive.com/blogging-tools/simple-balance-free-simple-wordpress-theme/"><img class="alignnone size-full wp-image-5660" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-43.jpg" alt="" width="600" height="412" /></a></p>
<h2>44. <a href="http://wp-themes.designdisease.com/category/free-blog-themes/dilectio/">Dilectio</a></h2>
<h2>[ <a href="http://wp-themes.designdisease.com/testrun/?theme=dilectio">Demo</a> ]</h2>
<p><a href="http://wp-themes.designdisease.com/category/free-blog-themes/dilectio/"><img class="alignnone size-full wp-image-5661" src="http://images.wordpressapi.com/Professional-3-Coloumn-Wordpress-Themes-44.jpg" alt="" width="600" height="412" /></a></p>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/" title="3 Column wordpress">3 Column wordpress</a></li><li><a href="http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/" title="3 column wordpress themes free download">3 column wordpress themes free download</a></li><li><a href="http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/" title="wordpress 3 column">wordpress 3 column</a></li><li><a href="http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/" title="3 column wordpress theme">3 column wordpress theme</a></li><li><a href="http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/" title="wordpress 3 column themes free download">wordpress 3 column themes free download</a></li><li><a href="http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/" title="wordpress themes free 3 column 2010">wordpress themes free 3 column 2010</a></li><li><a href="http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/" title="wordpress themes 3 column professional">wordpress themes 3 column professional</a></li><li><a href="http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/" title="wordpress template three column news">wordpress template three column news</a></li><li><a href="http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/" title="wordpress 3 columns open souce">wordpress 3 columns open souce</a></li><li><a href="http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/" title="wordpress 3 column themes">wordpress 3 column themes</a></li><li><a href="http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/" title="wordpress templates free 3 column">wordpress templates free 3 column</a></li><li><a href="http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/" title="white free 3 column wordpress themes">white free 3 column wordpress themes</a></li><li><a href="http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/" title="three columns wordpress themes for news">three columns wordpress themes for news</a></li><li><a href="http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/" title="free wordpress themes 3 column">free wordpress themes 3 column</a></li><li><a href="http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/" title="free three column qordpress themes newspaper">free three column qordpress themes newspaper</a></li><li><a href="http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/" title="free 3 column wordpress themes">free 3 column wordpress themes</a></li><li><a href="http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/" title="free 3 column wordpress theme">free 3 column wordpress theme</a></li><li><a href="http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/" title="free 3 column template wordpress">free 3 column template wordpress</a></li><li><a href="http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/" title="3 column wordpress themes">3 column wordpress themes</a></li><li><a href="http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/" title="wordpress themes newspaper free three column">wordpress themes newspaper free three column</a></li></ul><p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2010/12/19/free-40-professional-3-cloumn-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>WordPress 3.0.3 released with Fixes issues in the XML-RPC remote publishing interface</title>
		<link>http://wordpressapi.com/2010/12/08/wordpress-3-0-3-released-fixes-issues-xml-rpc-remote-publishing-interface/</link>
		<comments>http://wordpressapi.com/2010/12/08/wordpress-3-0-3-released-fixes-issues-xml-rpc-remote-publishing-interface/#comments</comments>
		<pubDate>Wed, 08 Dec 2010 21:02:41 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress news]]></category>
		<category><![CDATA[wordpress release]]></category>

		<guid isPermaLink="false">http://images.wordpressapi.com/?p=5563</guid>
		<description><![CDATA[http://wordpressapi.com/2010/12/08/wordpress-3-0-3-released-fixes-issues-xml-rpc-remote-publishing-interface/Some time before on 8th December WordPress released the New version which is 3.0.3. What wordpress is saying about this release. This release fixes issues in the remote publishing interface, which under certain circumstances allowed Author- and Contributor-level users to &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2010/12/08/wordpress-3-0-3-released-fixes-issues-xml-rpc-remote-publishing-interface/<p>Some time before on 8th December <a href="http://images.wordpressapi.com/2010/12/08/wordpress-3-0-3-released-fixes-issues-xml-rpc-remote-publishing-interface/" target="_blank">WordPress released</a> the New version which is 3.0.3. What wordpress is saying about this release.</p>
<div id="attachment_5564" class="wp-caption alignnone<img class="size-full wp-image-5564" title="wordpress-3.0.3 released" src="http://images.wordpressapi.com/wordpress-3-0-3.png" alt="wordpress-3.0.3 released" width="420" height="375" /><p class="wp-caption-text">wordpress-3.0.3 released</p></div>
<p><a href="http://codex.wordpress.org/Version_3.0.3">This release</a> fixes issues in the remote publishing interface, which under certain  circumstances allowed Author- and Contributor-level users to improperly  edit, publish, or delete posts.</p>
<p><strong>These issues only affect sites that have remote publishing enabled.</strong></p>
<p>Remote publishing is disabled by default, but you may have enabled it  to use a remote publishing client such as one of the WordPress mobile  apps. You can check these settings on the “Settings → Writing” screen.</p>
<p>With this release they Improved the capabilites checking in the XMLRPC code. They modified the following files.</p>
<pre>wp-includes/version.php
xmlrpc.php
readme.html
wp-admin/includes/update-core.php
</pre>
<p>Enjoy the<a href="http://images.wordpressapi.com/2010/12/08/wordpress-3-0-3-released-fixes-issues-xml-rpc-remote-publishing-interface/" target="_blank"> wordpress 3.0.3 version</a>.</p>
<p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2010/12/08/wordpress-3-0-3-released-fixes-issues-xml-rpc-remote-publishing-interface/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>how to generate Facebook fan code</title>
		<link>http://wordpressapi.com/2010/12/08/generate-facebook-fan-code/</link>
		<comments>http://wordpressapi.com/2010/12/08/generate-facebook-fan-code/#comments</comments>
		<pubDate>Wed, 08 Dec 2010 17:44:58 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[facebook]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[facebook fan]]></category>
		<category><![CDATA[facebook friends]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://images.wordpressapi.com/?p=5557</guid>
		<description><![CDATA[http://wordpressapi.com/2010/12/08/generate-facebook-fan-code/Many people want to add the facebook fan code and like button in your website for facebook page. For generating the facebook fan code just go to following URL: http://developers.facebook.com/docs/reference/plugins/like-box Just put your facebook page url in URL section. specify &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2010/12/08/generate-facebook-fan-code/<p>Many people want to add the<a href="http://images.wordpressapi.com/2010/12/08/generate-facebook-fan-code/" target="_blank"> facebook fan code</a> and like button in your website for facebook page.</p>
<p>For generating the facebook fan code just go to following URL:</p>
<p><a href="http://developers.facebook.com/docs/reference/plugins/like-box" target="_blank">http://developers.facebook.com/docs/reference/plugins/like-box</a></p>
<p>Just put your facebook page url in URL section. specify the width of widget and color scheme. then uncheck the show header and show stream checkbox.</p>
<p><img class="alignnone size-large wp-image-5558" title="Like Box" src="http://images.wordpressapi.com/Like-Box-600x474.png" alt="" width="600" height="474" /></p>
<p>If you want to show the connected photos then put value in connections textbox. But I recommend to use the zero value in that because that will slowdown your website. Then click on get code button. Then you will see the facbook in page popup. As per my suggestion use the iframe tag. Do not use the javascript tag for your website.</p>
<p>That will again for your website performance related. As much script tag you include in your website that much slowness will happen to your website.</p>
<p>Then use the iframe tag code in your website.</p>
<p><img class="alignnone size-full wp-image-5559" title="facebook-like-button" src="http://images.wordpressapi.com/facebook-like-button1.png" alt="" width="334" height="91" /></p>
<p>If you are using the wordpress then just use the text widget for showing your facebook fan widget.</p>
<p>If you are having any issues or questions about adding the<a href="http://images.wordpressapi.com/2010/12/08/generate-facebook-fan-code/" target="_blank"> facbook fan code</a> in your website then please write to me.</p>
<p>&nbsp;</p>
<div id="attachment_6777" class="wp-caption alignnone<a rel="attachment wp-att-6777" href="http://wordpressapi.com/2010/12/08/generate-facebook-fan-code/how-to-generate-facebook-fan-code/"><img class="size-full wp-image-6777" title="how to generate Facebook fan code" src="http://images.wordpressapi.com/how-to-generate-Facebook-fan-code.png" alt="how to generate Facebook fan code" width="350" height="303" /></a><p class="wp-caption-text">how to generate Facebook fan code</p></div>
<p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2010/12/08/generate-facebook-fan-code/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>How to Convert plain text URI to HTML links in wordpress themes</title>
		<link>http://wordpressapi.com/2010/12/07/convert-plain-text-uri-html-links-wordpress-themes/</link>
		<comments>http://wordpressapi.com/2010/12/07/convert-plain-text-uri-html-links-wordpress-themes/#comments</comments>
		<pubDate>Tue, 07 Dec 2010 19:30:31 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[Open source]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress api]]></category>
		<category><![CDATA[wordpress hacks]]></category>
		<category><![CDATA[wordpress news]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[wordpress tutorials]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://images.wordpressapi.com/?p=5549</guid>
		<description><![CDATA[http://wordpressapi.com/2010/12/07/convert-plain-text-uri-html-links-wordpress-themes/When you put some URL and email address you need to manually add the link URL to that text. This action always takes the some time of wordpress blogger. WordPress has facility to add the links to your URL and &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2010/12/07/convert-plain-text-uri-html-links-wordpress-themes/<p>When you put some URL and email address you need to manually add the link URL to that text. This action always takes the some time of wordpress blogger. WordPress has facility to add the links to your URL and email address automatically.<br />
<img class="alignnone size-large wp-image-5550" title="http www" src="http://images.wordpressapi.com/wordpress-links-make-clickable-600x491.jpg" alt="" width="600" height="491" /></p>
<p>This facility is available in wordpress since wordpress 2.7 version but many wordpress theme and plugin developers never used this functionality.</p>
<p>WordPress provides the make_clickable() function for convert <a href="http://images.wordpressapi.com/2010/12/07/convert-plain-text-uri-html-links-wordpress-themes/">plain text URI to HTML links</a>. This function able to convert URI, www, ftp, and email addresses. Finishes by fixing links within links. You just need to pass the string parameter to this method.</p>
<p>More detail information you can find in following file.<br />
wp-includes/formatting.php.</p>
<p>You can use this method in your functions.php file also. Use the following code.</p>
<pre class="brush: php; title: ; notranslate">
add_filter('the_content', 'make_clickable');
</pre>
<p>By using this code you are able to covert the URI, www, ftp, and email addresses in to link.</p>
<div id="attachment_6685" class="wp-caption alignnone<a rel="attachment wp-att-6685" href="http://wordpressapi.com/2010/12/07/convert-plain-text-uri-html-links-wordpress-themes/how-to-convert-plain-text-uri-to-html-links-in-wordpress-themes/"><img class="size-full wp-image-6685" title="How to Convert plain text URI to HTML links in wordpress themes" src="http://images.wordpressapi.com/How-to-Convert-plain-text-URI-to-HTML-links-in-wordpress-themes.png" alt="How to Convert plain text URI to HTML links in wordpress themes" width="300" height="246" /></a><p class="wp-caption-text">How to Convert plain text URI to HTML links in wordpress themes</p></div>
<p>If you are having any issues or question about <a href="http://images.wordpressapi.com/2010/12/07/convert-plain-text-uri-html-links-wordpress-themes/">make_clickable</a> method then please write to me.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpressapi.com/2010/12/07/convert-plain-text-uri-html-links-wordpress-themes/" title="action for convert plain url to html links">action for convert plain url to html links</a></li><li><a href="http://wordpressapi.com/2010/12/07/convert-plain-text-uri-html-links-wordpress-themes/" title="convert html to wordpress themes download">convert html to wordpress themes download</a></li><li><a href="http://wordpressapi.com/2010/12/07/convert-plain-text-uri-html-links-wordpress-themes/" title="wordpress convert text to links">wordpress convert text to links</a></li></ul><p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2010/12/07/convert-plain-text-uri-html-links-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: wordpressapi.com @ 2012-05-23 18:17:57 by W3 Total Cache -->
