<?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>WP Luv</title>
	<atom:link href="http://wpluv.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpluv.com</link>
	<description>Blogging. WordPress.. Love…</description>
	<lastBuildDate>Sat, 24 Mar 2012 08:44:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Make WordPress more secure by changing &#8220;wp-config.php&#8221; file location</title>
		<link>http://wpluv.com/make-wordpress-more-secure-by-changing-wp-config-php-location</link>
		<comments>http://wpluv.com/make-wordpress-more-secure-by-changing-wp-config-php-location#comments</comments>
		<pubDate>Tue, 23 Aug 2011 16:32:30 +0000</pubDate>
		<dc:creator>Jayant</dc:creator>
				<category><![CDATA[Simple hacks]]></category>

		<guid isPermaLink="false">http://wpluv.com/?p=149</guid>
		<description><![CDATA[Use a simple trick to make your WordPress installation more secure. All you have to do is change the location of your WordPress configuration file. WordPress stores your database details (database name, user name, password and host name) in the &#8220;wp-config.php&#8221; file found in the root directory of the WordPress installation. Along with all other [...]]]></description>
			<content:encoded><![CDATA[<p>Use a simple trick to make your WordPress installation more secure. All you have to do is change the location of your WordPress configuration file.<br />
<span id="more-149"></span><br />
<img class="aligncenter size-full wp-image-150" title="Wordpress security" src="http://wpluv.com/wp-content/uploads/2011/08/Wordpress-security.jpg" alt="Wordpress security Make Wordpress more secure by changing wp config.php file location" width="500" height="300" /></p>
<p>WordPress stores your database details (database name, user name, password and host name) in the <em>&#8220;wp-config.php&#8221;</em> file found in the root directory of the WordPress installation. Along with all other files, this file also resides in the public directory (~/home/user/public_html) of your Cpanel. Keeping the file in the public folder makes it easier for hackers to inject malware or delete your site by compromising your configuration settings.</p>
<p>You can protect your configuration file by using a little trick. WordPress automatically knows to look for your <em>&#8220;wp-config.php&#8221;</em> file one directory level up than the installation folder. So, by taking out your file  from public_html directory and  moving it to the private user directory will make it more secure.</p>
<p><em>Note: This trick will not work if your blog is installed in a sub-directory (domain.com/blog) or as a add-on domain (add-on.domain.com).</em></p>
<p><strong>Source:</strong> <a title="Wordpress Security - Flickr creative common image" href="http://www.flickr.com/photos/carbonnyc/2294144289/sizes/z/in/photostream/" target="_blank">Flickr Link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wpluv.com/make-wordpress-more-secure-by-changing-wp-config-php-location/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPDB Profiling &#8211; Identify wordpress plugins and themes with slow database query load times</title>
		<link>http://wpluv.com/wpdb-profiling-identify-wordpress-plugins-and-themes-with-slow-database-query-load-times</link>
		<comments>http://wpluv.com/wpdb-profiling-identify-wordpress-plugins-and-themes-with-slow-database-query-load-times#comments</comments>
		<pubDate>Mon, 08 Aug 2011 18:42:51 +0000</pubDate>
		<dc:creator>Jayant</dc:creator>
				<category><![CDATA[Simple hacks]]></category>
		<category><![CDATA[Database profiling]]></category>
		<category><![CDATA[Wordpress plugins]]></category>
		<category><![CDATA[WPDB profiling]]></category>

		<guid isPermaLink="false">http://wpluv.com/?p=144</guid>
		<description><![CDATA[WPDB Profiling is a great plugin to examine the database query load times for your wordpress themes and plugins. It helps identify poorly written themes and plugins which make unwanted or excessive database calls, thereby dramatically increasing the page load times. How it works WPDB makes use of the $wpdb object in wordpress which can [...]]]></description>
			<content:encoded><![CDATA[<p align="justify"><a title="WPDB Profiling" href="http://tierra-innovation.com/wordpress-cms/plugins/wpdb-profiling/" target="_blank">WPDB Profiling</a> is a great plugin to examine the database query load times for your wordpress themes and plugins. It helps identify poorly written themes and plugins which make unwanted or excessive database calls, thereby dramatically increasing the page load times.</p>
<p><span id="more-144"></span></p>
<p align="justify"><a href="http://wpluv.com/wp-content/uploads/2011/08/wpdb-profiling-wordpress-plugin.jpg"><img style="display: inline;" title="wpdb profiling wordpress plugin" src="http://wpluv.com/wp-content/uploads/2011/08/wpdb-profiling-wordpress-plugin_thumb.jpg" alt="wpdb profiling wordpress plugin thumb WPDB Profiling   Identify wordpress plugins and themes with slow database query load times" width="580" height="227" /></a></p>
<p align="justify"><strong>How it works</strong></p>
<p align="justify">WPDB makes use of the <strong>$wpdb object </strong>in wordpress which can store an array of queries along with the time it takes to execute them. To enable this, you must add the followig code in the <strong>wp-config.php</strong> file (this should generally be updated by default).</p>
<pre>define( 'SAVEQUERIES', true );</pre>
<p align="justify">WPDB displays the total number of queries made to render each page along with execution time taken by each database query at the end of each wordpress page/post. It also list down the individual SQL statements and function call used to execute the queries.</p>
<p align="justify">If you see a plugin/theme with high number of similar queries or small number of really slow queries (consuming high amount of times), then you should consider disabling and replacing the plugin/theme.</p>
<p align="justify"><strong>Installation and Usage</strong></p>
<p>1. Install WPDB Profiling from WordPress plugin directory and activate it</p>
<blockquote><p><a href="http://wordpress.org/extend/plugins/wpdb-profiling/">http://wordpress.org/extend/plugins/wpdb-profiling/</a></p></blockquote>
<p><a href="http://wpluv.com/wp-content/uploads/2011/08/wpdb-profiling-wordpress-plugin-activate.jpg"><img style="display: inline;" title="wpdb profiling wordpress plugin activate" src="http://wpluv.com/wp-content/uploads/2011/08/wpdb-profiling-wordpress-plugin-activate_thumb.jpg" alt="wpdb profiling wordpress plugin activate thumb WPDB Profiling   Identify wordpress plugins and themes with slow database query load times" width="580" height="104" /></a></p>
<p>&nbsp;</p>
<p>2. Database profiling can be setup to display auto or by using “?show_queries=yes” in the parameter URL. You can activate the service for your wordpress users based on their permission level.</p>
<p><a href="http://wpluv.com/wp-content/uploads/2011/08/wpdb-profiling-wordpress-plugin-settings.jpg"><img style="display: inline;" title="wpdb profiling wordpress plugin settings" src="http://wpluv.com/wp-content/uploads/2011/08/wpdb-profiling-wordpress-plugin-settings_thumb.jpg" alt="wpdb profiling wordpress plugin settings thumb WPDB Profiling   Identify wordpress plugins and themes with slow database query load times" width="580" height="297" /></a></p>
<p>&nbsp;</p>
<p>3. Additionally, the settings page allows you to disable “Auto Saving” and “Post Revisions”.</p>
<p>&nbsp;</p>
<p><strong>Download</strong></p>
<blockquote><p><a href="http://wordpress.org/extend/plugins/wpdb-profiling/" target="_blank"><strong><em>WPDB Profiler plugin</em></strong></a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://wpluv.com/wpdb-profiling-identify-wordpress-plugins-and-themes-with-slow-database-query-load-times/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Save your image bandwidth using Smush.it</title>
		<link>http://wpluv.com/save-your-image-bandwidth-using-smush-it</link>
		<comments>http://wpluv.com/save-your-image-bandwidth-using-smush-it#comments</comments>
		<pubDate>Mon, 22 Nov 2010 16:28:17 +0000</pubDate>
		<dc:creator>Jayant</dc:creator>
				<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Image optimization]]></category>
		<category><![CDATA[Smush.it]]></category>
		<category><![CDATA[Wordpress plugins]]></category>

		<guid isPermaLink="false">http://wpluv.com/?p=83</guid>
		<description><![CDATA[Smushit.com is a free web service offering image optimization service. You can select images stored on your computer or an URL and optimize it(smush it). WordPress Smush.it is a free plugin which uses the Smush.it API and help reduce file size of images you upload on your blog. Smush.it seamlessly integrates with WordPress and optimize [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><a title="Smushit.com" href="http://smushit.com" rel="nofollow" target="_blank">Smushit.com</a> is a free web service offering image optimization service. You can select images stored on your computer or an URL and optimize it(<em>smush it</em>).</p>
<p><span id="more-83"></span></p>
<p style="text-align: center;"><img class="aligncenter" style="margin: 0px; display: inline;" title="image" src="http://wpluv.com/wp-content/uploads/2010/11/image_thumb2.png" alt="image thumb2 Save your image bandwidth using Smush.it" width="590" height="327" /></p>
<p style="text-align: justify;"><a title="Wordpress Smush.it" href="http://wordpress.org/extend/plugins/wp-smushit/" rel="nofollow" target="_blank">WordPress Smush.it</a> is a free plugin which uses the Smush.it API and help reduce file size of images you upload on your blog. Smush.it seamlessly integrates with WordPress and optimize images by JPG compression, convert GIFs into PNGs, stripping unused colors and meta data.</p>
<p style="text-align: justify;"><!--more--></p>
<p><strong>Installation and Uses</strong></p>
<p>It’s a silent plugin, meaning you install it and forget about it. It keeps optimizing all your images in the background, every time you upload one. If you want, you can re-smush the images from your wordpress backend. Just go to <strong>“Media &gt; Library”</strong>, select the image and click “Re-smush” link against it.</p>
<p><strong>Download</strong></p>
<blockquote><p><a title="Smush.it Plugin" href="http://wordpress.org/extend/plugins/wp-smushit/" rel="nofollow" target="_blank"><em><strong>Smush.it Plugin</strong></em></a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://wpluv.com/save-your-image-bandwidth-using-smush-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Optimize images on your blog using SEO Friendly Images</title>
		<link>http://wpluv.com/optimize-images-on-your-blog-using-seo-friendly-images</link>
		<comments>http://wpluv.com/optimize-images-on-your-blog-using-seo-friendly-images#comments</comments>
		<pubDate>Sun, 21 Nov 2010 09:28:21 +0000</pubDate>
		<dc:creator>Jayant</dc:creator>
				<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[ALT attribute]]></category>
		<category><![CDATA[Image SEO]]></category>
		<category><![CDATA[SEO Friendly Images]]></category>
		<category><![CDATA[TITLE attribute]]></category>

		<guid isPermaLink="false">http://wpluv.com/?p=59</guid>
		<description><![CDATA[One very important and often missed SEO management tactic is optimizing the images on your website. SEO Friendly Images is a simple but very effective plugin which automatically optimizes all your website images with proper ALT and TITLE attributes. ALT attribute is important part of search engine optimization. It describes your images to search engine [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><span style="color: #ac2e1b;"><span style="color: #ac2e1b;"><span style="color: #000000;">One very important and often missed SEO management tactic is optimizing the images on your website</span><span style="text-decoration: underline;">. </span><a style="text-decoration: underline;" title="SEO Friendly Images" href="http://wordpress.org/extend/plugins/seo-image/" rel="nofollow" target="_blank">SEO Friendly Images</a> <span style="color: #000000;">is a simple but very effective plugin which automatically optimizes all your website images with proper</span> <a style="text-decoration: underline;" title="ALT and TITLE attributes" href="http://en.wikipedia.org/wiki/Alt_attribute" rel="nofollow" target="_blank">ALT and TITLE attributes</a><span style="text-decoration: underline;">. </span></span></span></p>
<p><span id="more-59"></span></p>
<p style="text-align: justify;"><a href="http://wpluv.com/wp-content/uploads/2010/11/google-images-seo.jpg"><img style="display: block; float: none; margin-left: auto; margin-right: auto;" title="google-images-seo" src="http://wpluv.com/wp-content/uploads/2010/11/google-images-seo_thumb.jpg" alt="google images seo thumb Optimize images on your blog using SEO Friendly Images" width="590" height="251" /></a></p>
<p style="text-align: justify;">ALT attribute is important part of search engine optimization. It describes your images to search engine and is a key determining factor when a user searches for a certain image. TITLE attribute is little less important from SEO perspective but helps users as it serves as the tooltip text on mouse over.</p>
<p style="text-align: justify;"><strong>SEO Friendly Images</strong></p>
<p style="text-align: justify;">SEO Friendly Images helps you automatically add ATL and TITLE attributes to your website images. It can also override default WordPress ALT and TITLE attributes. You can select one or a combination of the following placeholders as an automated action.</p>
<blockquote style="text-align: justify;"><p><em>%title &#8211; replaces post title<br />
%name &#8211; replaces image file name (without extension)<br />
%category &#8211; replaces post category<br />
%tags &#8211; replaces post tags</em></p></blockquote>
<p style="text-align: justify;">You can play up with the combinations but I feel the following combination should work the best.</p>
<p style="text-align: justify;"><a href="http://wpluv.com/wp-content/uploads/2010/11/image1.png"><img style="display: inline;" title="image" src="http://wpluv.com/wp-content/uploads/2010/11/image_thumb1.png" alt="image thumb1 Optimize images on your blog using SEO Friendly Images" width="600" height="258" /></a></p>
<p style="text-align: justify;"><strong>Download</strong></p>
<blockquote style="text-align: justify;">
<p style="text-align: justify;"><a title="SEO Friendly Images" href="http://wordpress.org/extend/plugins/seo-image/" rel="nofollow" target="_blank"><strong><em>SEO Friendly Images</em></strong></a></p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://wpluv.com/optimize-images-on-your-blog-using-seo-friendly-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove mandatory Category and Tags base from blog permalinks</title>
		<link>http://wpluv.com/remove-mandatory-category-and-tags-base-from-blog-permalinks</link>
		<comments>http://wpluv.com/remove-mandatory-category-and-tags-base-from-blog-permalinks#comments</comments>
		<pubDate>Sun, 21 Nov 2010 09:01:41 +0000</pubDate>
		<dc:creator>Jayant</dc:creator>
				<category><![CDATA[Simple hacks]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Wordpress Permalink]]></category>
		<category><![CDATA[WP No Category Base]]></category>
		<category><![CDATA[WP No Tag Base]]></category>

		<guid isPermaLink="false">http://wpluv.com/?p=48</guid>
		<description><![CDATA[Here is a little trick to better manage your blog permalinks in WordPress. WP No Category Base and WP No Tag Base are two simple plugins which will remove the mandatory category and tag base from your blog permalink structure. By default WordPress adds “topics” or “tags” to the Category and Tags permalinks. You can change the [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Here is a little trick to better manage your blog permalinks in WordPress. <a title="WP No Category Base" href="http://wordpress.org/extend/plugins/wp-no-category-base/" rel="nofollow" target="_blank">WP No Category Base</a> and <a title="WP No Tag Base" href="http://wordpress.org/extend/plugins/wp-no-tag-base/" rel="nofollow" target="_blank">WP No Tag Base</a> are two simple plugins which will remove the mandatory category and tag base from your blog permalink structure.</p>
<p><span id="more-48"></span></p>
<p style="text-align: justify;"><a href="http://wpluv.com/wp-content/uploads/2010/11/image.png"><img style="display: block; float: none; margin-left: auto; margin-right: auto;" title="image" src="http://wpluv.com/wp-content/uploads/2010/11/image_thumb.png" alt="image thumb Remove mandatory Category and Tags base from blog permalinks" width="590" height="236" /></a></p>
<p style="text-align: justify;">By default WordPress adds “topics” or “tags” to the Category and Tags permalinks. You can change the default values as per your choice but you can’t disable it. That is were you can use the following two plugins to change the permalink structure.</p>
<p><!--more--></p>
<p style="text-align: justify;"><strong>Before the plugins are installed</strong></p>
<blockquote style="text-align: justify;"><p><em>wpluv.com/topics/category-name</em></p>
<p><em>wpluv.com/tags/tag-name</em></p></blockquote>
<p style="text-align: justify;"><strong>After the plugins are installed</strong></p>
<blockquote style="text-align: justify;"><p><em>wpluv.com/category-name</em></p>
<p><em>wpluv.com/tag-name</em></p></blockquote>
<p style="text-align: justify;"><strong>Essential reasons to use the plugins</strong></p>
<p style="text-align: justify;">1. Better and logical permalinks</p>
<p style="text-align: justify;">2. Better SEO management. Shorter, more meaningful blog permalinks</p>
<p style="text-align: justify;"><strong>Features</strong></p>
<p style="text-align: justify;">1. Simple plug-in. Very little overhead on Webserver resources. No dependency on any other plug-ins.</p>
<p style="text-align: justify;">2. Silent plug-in. No options or anything required. Activate it and forget it.</p>
<p style="text-align: justify;">3. Compatible with sitemaps and hierarchical categories (tags).</p>
<p style="text-align: justify;">4. Rewrite old category (tag) permalinks to new one using 301 (permanent) redirect.</p>
<p style="text-align: justify;"><strong>Download the Plug-ins</strong></p>
<blockquote style="text-align: justify;"><p><a title="WP No Category Base" href="http://wordpress.org/extend/plugins/wp-no-category-base/" rel="nofollow" target="_blank"><strong><em>WP No Category Base</em></strong></a></p>
<p style="text-align: justify;"><a title="WP No Tags Base" href="http://wordpress.org/extend/plugins/wp-no-tag-base/" rel="nofollow" target="_blank"><strong><em>WP No Tags Base</em></strong></a></p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://wpluv.com/remove-mandatory-category-and-tags-base-from-blog-permalinks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>15 free WordPress themes based on Hybrid Framework</title>
		<link>http://wpluv.com/15-free-wordpress-themes-based-on-hybrid-framework</link>
		<comments>http://wpluv.com/15-free-wordpress-themes-based-on-hybrid-framework#comments</comments>
		<pubDate>Sun, 21 Nov 2010 08:01:38 +0000</pubDate>
		<dc:creator>Jayant</dc:creator>
				<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Free Wordpress themes]]></category>
		<category><![CDATA[Hybrid Theme]]></category>
		<category><![CDATA[Justin Tadlock]]></category>
		<category><![CDATA[Theme Frameworks]]></category>

		<guid isPermaLink="false">http://wpluv.com/?p=24</guid>
		<description><![CDATA[Some WordPress designers give away free wordpress themes that can easily rival the solidity and features available only with premium themes. Justin Tadlock, a famous wordpress designer have created a solid open source WordPress theme framework called Hybrid and also provided loads of free themes based on it. We will quickly discuss the Hybrid theme [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Some WordPress designers give away free wordpress themes that can easily rival the solidity and features available only with premium themes. <a title="Justin Tadlock" href="http://justintadlock.com/" rel="nofollow" target="_blank">Justin Tadlock</a>, a famous wordpress designer have created a solid open source WordPress theme framework called <a title="Hybrid Theme" href="http://themehybrid.com/" rel="nofollow" target="_blank">Hybrid</a> and also provided loads of free themes based on it.</p>
<p><span id="more-24"></span></p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-25" title="free-themes-wordpress-love" src="http://wpluv.com/wp-content/uploads/2010/11/free-themes-wordpress-love.jpg" alt="free themes wordpress love 15 free WordPress themes based on Hybrid Framework" width="580" height="251" /></p>
<p style="text-align: justify;">We will quickly discuss the Hybrid theme framework and present 15 free WordPress themes based on it. All are free, rock solid and provide a plethora of features.</p>
<p style="text-align: justify;"><strong>Theme Frameworks, Parent and Child themes</strong></p>
<p style="text-align: justify;">Before we move on, let’s have a quick word on Theme frameworks, Parent and Child themes. WordPress allows the creation of child themes. In simple words, it allows creation of themes which can copy another theme and change the look of it by using just a simple CSS file. It’s a great way for designers to quickly build new themes (called <a title="Child themes" href="http://codex.wordpress.org/Child_Themes" rel="nofollow" target="_blank">Child themes</a>) based on a solid base theme (called Parent theme).</p>
<p style="text-align: justify;">As you guessed it, Parent themes are more general in nature, packed with loads of features and are generally not made to be used as standalone themes (although you can use it as one). Child themes on the other hand contains nothing but CSS files, images and typically a <em>functions.php </em>file which decides what options from Parent theme it should display.</p>
<p style="text-align: justify;">A <a title="theme framework" href="http://codex.wordpress.org/Theme_Frameworks" rel="nofollow" target="_blank">theme framework</a> is a special parent theme, which unlike Parent theme can’t be used on its own and is more high level in nature <em>(although this is not a strict definition, but we can use it in the context of the article). </em>Hybrid Theme originally started as a Parent theme, but recently a Framework have been released.</p>
<p style="text-align: justify;"><strong>How to install a WordPress Theme</strong></p>
<p style="text-align: justify;"><em>If you are new to WordPress themes, don’t fear as it is not rocket science. Just remember the following steps and you will be all set.</em></p>
<p style="text-align: justify;">Step 1. Copy the Hybrid Parent theme in the <em>wp-content/themes</em> directory</p>
<p style="text-align: justify;">Step 2. Copy the Child theme in the <em>wp-content/themes</em> directory</p>
<p style="text-align: justify;">Step 3. In the WordPress Admin area, go to <em>Appearance &gt; Themes</em> and choose the Child theme as your current theme</p>
<p style="text-align: justify;"><em>Only for Prototype Theme, you do not have to perform Step 1. Also, in case you are installing theme directly from WordPress site, install both the Parent theme and Child theme.</em></p>
<p style="text-align: justify;"><strong><a title="Hybrid Parent Theme" href="http://themehybrid.com/themes/hybrid" rel="nofollow" target="_blank">1. Hybrid Parent Theme</a></strong></p>
<p style="text-align: justify;"><img class="aligncenter size-medium wp-image-30" title="hybrid framework free wordpress theme" src="http://wpluv.com/wp-content/uploads/2010/11/hybrid-framework-free-wordpress-theme-600x241.jpg" alt="hybrid framework free wordpress theme 600x241 15 free WordPress themes based on Hybrid Framework" width="590" height="241" /></p>
<p style="text-align: justify;">This is the Parent theme for all Hybrid based Child themes. Install this theme in your WordPress themes folder, along with any other Child theme you want to use. If you want, you can use it as your current theme without any Child themes.</p>
<p style="text-align: justify;"><strong><a title="Outline Theme" href="http://themehybrid.com/themes/outline" rel="nofollow" target="_blank">2. Outline Theme</a></strong></p>
<p style="text-align: justify;"><img class="aligncenter size-medium wp-image-31" title="outline free wordpress theme" src="http://wpluv.com/wp-content/uploads/2010/11/outline-free-wordpress-theme-600x205.jpg" alt="outline free wordpress theme 600x205 15 free WordPress themes based on Hybrid Framework" width="590" height="205" /></p>
<p style="text-align: justify;">Outline theme has been specially developed based on Hybrid 0.8 and WordPress 3.0 and features custom background and navigation menus.</p>
<p style="text-align: justify;"><strong><a title="Prototype Theme" href="http://themehybrid.com/themes/prototype" rel="nofollow" target="_blank">3. Prototype Theme</a></strong></p>
<p style="text-align: justify;"><img class="aligncenter size-medium wp-image-32" title="prototype free wordpress theme" src="http://wpluv.com/wp-content/uploads/2010/11/prototype-free-wordpress-theme-600x251.jpg" alt="prototype free wordpress theme 600x251 15 free WordPress themes based on Hybrid Framework" width="590" height="251" /></p>
<p style="text-align: justify;">Prototype is a special parent theme, multiple nav menus, several widget areas, and per-post layouts. It is made to be used by web designers for creating beautiful Child Themes. Although you can use it without any Child themes.</p>
<p style="text-align: justify;"><strong><a title="Hybrid News Theme" href="http://themehybrid.com/themes/hybrid-news" rel="nofollow" target="_blank">4. Hybrid News Theme</a></strong></p>
<p style="text-align: justify;"><img class="aligncenter size-medium wp-image-33" title="hybrid news free wordpress theme" src="http://wpluv.com/wp-content/uploads/2010/11/hybrid-news-free-wordpress-theme-600x246.jpg" alt="hybrid news free wordpress theme 600x246 15 free WordPress themes based on Hybrid Framework" width="590" height="246" /></p>
<p style="text-align: justify;">Hybrid News has a magazine type layout, double navigation menus and special widget areas. The main purpose of the theme is to be used as a News site.</p>
<p style="text-align: justify;"><strong><a title="Structure Theme" href="http://themehybrid.com/themes/structure" rel="nofollow" target="_blank">5. Structure Theme</a></strong></p>
<p style="text-align: justify;"><img class="aligncenter size-medium wp-image-34" title="structure free wordpress theme" src="http://wpluv.com/wp-content/uploads/2010/11/structure-free-wordpress-theme-600x228.jpg" alt="structure free wordpress theme 600x228 15 free WordPress themes based on Hybrid Framework" width="590" height="228" /></p>
<p style="text-align: justify;">Structure is a visually stunning theme through its pixel-perfect layout and beautiful typography.</p>
<p style="text-align: justify;"><strong><a title="Original Hybrid Layout Theme" href="http://themehybrid.com/themes/hybrid-original" rel="nofollow" target="_blank">6. Original Hybrid Layout Theme</a></strong></p>
<p style="text-align: justify;"><img class="aligncenter size-medium wp-image-35" title="original hybrid free wordpress theme" src="http://wpluv.com/wp-content/uploads/2010/11/original-hybrid-free-wordpress-theme-600x236.jpg" alt="original hybrid free wordpress theme 600x236 15 free WordPress themes based on Hybrid Framework" width="590" height="236" /></p>
<p style="text-align: justify;">Hybrid 0.6 has a new default layout. This Child theme was developed for people who liked the old layout.</p>
<p style="text-align: justify;"><strong><a title="Old School Theme" href="http://themehybrid.com/themes/old-school" rel="nofollow" target="_blank">7. Old School Theme</a></strong></p>
<p style="text-align: justify;"><img class="aligncenter size-medium wp-image-36" title="old school free wordpress theme" src="http://wpluv.com/wp-content/uploads/2010/11/old-school-free-wordpress-theme-600x234.jpg" alt="old school free wordpress theme 600x234 15 free WordPress themes based on Hybrid Framework" width="590" height="234" /></p>
<p style="text-align: justify;">Old School is a stylish blue design with a custom page type scroll and cool animations.</p>
<p style="text-align: justify;"><strong><a title="Bliss Theme" href="http://themehybrid.com/themes/bliss" rel="nofollow" target="_blank">8. Bliss Theme</a></strong></p>
<p style="text-align: justify;"><img class="aligncenter size-medium wp-image-29" title="bliss free wordpress theme" src="http://wpluv.com/wp-content/uploads/2010/11/bliss-free-wordpress-theme-600x231.jpg" alt="bliss free wordpress theme 600x231 15 free WordPress themes based on Hybrid Framework" width="590" height="231" /></p>
<p style="text-align: justify;">Bliss is a very simple, very minimalistic in appearance. Great for people looking out for a minimal wordpress theme.</p>
<p style="text-align: justify;"><strong><a title="Critical Theme" href="http://themehybrid.com/themes/critical" rel="nofollow" target="_blank">9. Critical Theme</a></strong></p>
<p style="text-align: justify;"><img class="aligncenter size-medium wp-image-37" title="critical free wordpress theme" src="http://wpluv.com/wp-content/uploads/2010/11/critical-free-wordpress-theme-600x268.jpg" alt="critical free wordpress theme 600x268 15 free WordPress themes based on Hybrid Framework" width="590" height="268" /></p>
<p style="text-align: justify;">Designed specially for a Movie database site, this theme is great for writing reviews and building a community of people around a single topic.</p>
<p style="text-align: justify;"><strong><a title="Leviathan Theme" href="http://themehybrid.com/themes/leviathan" rel="nofollow" target="_blank">10. Leviathan Theme</a></strong></p>
<p style="text-align: justify;"><img class="aligncenter size-medium wp-image-38" title="levianth free wordpress theme" src="http://wpluv.com/wp-content/uploads/2010/11/levianth-free-wordpress-theme-600x249.jpg" alt="levianth free wordpress theme 600x249 15 free WordPress themes based on Hybrid Framework" width="590" height="249" /></p>
<p style="text-align: justify;">Leviathan gives focus to your content and giving clutter free design. This theme works well with large images and long posts.</p>
<p style="text-align: justify;"><strong><a title="Life Collage Theme" href="http://themehybrid.com/themes/life-collage" rel="nofollow" target="_blank">11. Life Collage Theme</a></strong></p>
<p style="text-align: justify;"><img class="aligncenter size-medium wp-image-39" title="life collage free wordpress theme" src="http://wpluv.com/wp-content/uploads/2010/11/life-collage-free-wordpress-theme-600x286.jpg" alt="life collage free wordpress theme 600x286 15 free WordPress themes based on Hybrid Framework" width="590" height="286" /></p>
<p style="text-align: justify;">Life Collage theme is meant to allow you to share your thoughts with the world. It’s purely about blogging and having a little fun while you do it.</p>
<p style="text-align: justify;"><strong><a title="Skeleton Theme" href="http://themehybrid.com/themes/skeleton" rel="nofollow" target="_blank">12. Skeleton Theme</a></strong></p>
<p style="text-align: justify;"><img class="aligncenter size-medium wp-image-40" title="skeleton free wordpress theme" src="http://wpluv.com/wp-content/uploads/2010/11/skeleton-free-wordpress-theme-600x215.jpg" alt="skeleton free wordpress theme 600x215 15 free WordPress themes based on Hybrid Framework" width="590" height="215" /></p>
<p style="text-align: justify;">Skeleton is a blank child theme created for web designer in mind. If you’ve ever wanted to create your own custom child theme, then this is the place to start. Everything is laid out and ready for you.</p>
<p style="text-align: justify;"><strong><a title="WP Full Site Theme" href="http://developdaly.com/themes/wpfullsite/" rel="nofollow" target="_blank">13. WP Full Site Theme</a></strong></p>
<p style="text-align: justify;"><img class="aligncenter size-medium wp-image-41" title="wp full site free wordpress theme" src="http://wpluv.com/wp-content/uploads/2010/11/wp-full-site-free-wordpress-theme-600x278.jpg" alt="wp full site free wordpress theme 600x278 15 free WordPress themes based on Hybrid Framework" width="590" height="278" /></p>
<p style="text-align: justify;">WP Full Site theme built for small businesses that that is tailored towards the basics of gaining customers.</p>
<p style="text-align: justify;"><strong><a title="Malleable Theme" href="http://developdaly.com/themes/malleable/" rel="nofollow" target="_blank">14. Malleable Theme</a></strong></p>
<p style="text-align: justify;"><img class="aligncenter size-medium wp-image-42" title="malleable free wordpress theme" src="http://wpluv.com/wp-content/uploads/2010/11/malleable-free-wordpress-theme-600x307.jpg" alt="malleable free wordpress theme 600x307 15 free WordPress themes based on Hybrid Framework" width="590" height="307" /></p>
<p style="text-align: justify;">Malleable is another theme which can be used for sites seeking a magazine style layout.</p>
<p style="text-align: justify;"><strong><a title="Boxpulse Theme" href="http://developdaly.com/themes/boxpulse/" rel="nofollow" target="_blank">15. Boxpulse Theme</a></strong></p>
<p style="text-align: center;"><img title="boxpulse free wordpress theme" src="http://wpluv.com/wp-content/uploads/2010/11/boxpulse-free-wordpress-theme-600x250.jpg" alt="boxpulse free wordpress theme 600x250 15 free WordPress themes based on Hybrid Framework" width="590" height="250" /></p>
<p style="text-align: justify;">Boxpulse theme offers a certain elegance and includes a template made specifically for the included slider.</p>
<p style="text-align: justify;"><strong>What Next..??</strong></p>
<p style="text-align: justify;">I tried to generalize the process you need to follow for installing Hybrid based themes. Check out <a title="Getting Started Tutorial" href="http://themehybrid.com/themes/hybrid/getting-started" rel="nofollow" target="_blank"><em>getting started tutorial</em></a> incase you decide to use them. Hope you enjoyed the article. Let me know your views using the comments section.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpluv.com/15-free-wordpress-themes-based-on-hybrid-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello World..!! WordPress wins best CMS award</title>
		<link>http://wpluv.com/hello-world-wordpress-wins-best-cms-award</link>
		<comments>http://wpluv.com/hello-world-wordpress-wins-best-cms-award#comments</comments>
		<pubDate>Sat, 20 Nov 2010 19:33:11 +0000</pubDate>
		<dc:creator>Jayant</dc:creator>
				<category><![CDATA[Blog News]]></category>
		<category><![CDATA[First blog post]]></category>
		<category><![CDATA[Hello World]]></category>
		<category><![CDATA[Wordpress best CMS]]></category>

		<guid isPermaLink="false">http://wpluv.com/hello-world-wordpress-wins-best-cms-award</guid>
		<description><![CDATA[WordPress has been awarded the Open Source CMS Hall of Fame Award by PACKT Publishing. What a day to publish the first post for this blog. Stay tuned as we open the floodgates and start pouring post after post of WordPress Love.]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><a title="Wordpress" href="http://wordpress.org" rel="nofollow" target="_blank">WordPress</a> has been awarded the <a title="Open Source CMS Hall of Fame Award" href="http://www.packtpub.com/open-source-awards-home" rel="nofollow" target="_blank">Open Source CMS Hall of Fame Award</a> by PACKT Publishing. What a day to publish the first post for this blog. Stay tuned as we open the floodgates and start pouring post after post of WordPress Love.</p>
<p><span id="more-12"></span></p>
<p style="text-align: center;"><img class="aligncenter" style="display: inline;" title="hello-world-wordpress-love" src="http://wpluv.com/wp-content/uploads/2010/11/hello-world-wordpress-love_thumb3.jpg" alt="hello world wordpress love thumb3 Hello World..!! WordPress wins best CMS award" width="580" height="249" /></p>
]]></content:encoded>
			<wfw:commentRss>http://wpluv.com/hello-world-wordpress-wins-best-cms-award/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

