<?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>CMS tutorial site &#187; wordpress</title>
	<atom:link href="http://blog.cmstutorials.org/posts/category/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.cmstutorials.org</link>
	<description>Free tutorials and resources</description>
	<lastBuildDate>Fri, 04 Jun 2010 22:39:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>5 reasons why you should love Wordpress 3.0</title>
		<link>http://blog.cmstutorials.org/posts/general/5-reasons-why-you-should-love-wordpress-3-0</link>
		<comments>http://blog.cmstutorials.org/posts/general/5-reasons-why-you-should-love-wordpress-3-0#comments</comments>
		<pubDate>Fri, 04 Jun 2010 22:36:47 +0000</pubDate>
		<dc:creator>krike</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[introduction]]></category>
		<category><![CDATA[wordpress 3.0]]></category>

		<guid isPermaLink="false">http://blog.cmstutorials.org/?p=779</guid>
		<description><![CDATA[Custom types
One of the major anticipated updates is without a doubt the custom types. Untill now you could only add one type of post and if you wanted to have different post types you could either use custom fields or the plugin fileflutter. But now, thanks to a small peace of code, you can add [...]]]></description>
			<content:encoded><![CDATA[<h2>Custom types</h2>
<p>One of the major anticipated updates is without a doubt the custom types. Untill now you could only add one type of post and if you wanted to have different post types you could either use custom fields or the plugin fileflutter. But now, thanks to a small peace of code, you can add different custom types with their own menu and settings.</p>
<p>Here follows the code to register a new post type, how easy can it be?</p>
<p>
<pre class="brush: php;">register_post_type('podcast', array(
'label' =&gt; __('Podcasts'),
'singular_label' =&gt; __('Podcast'),
'public' =&gt; true,
'show_ui' =&gt; true,
'capability_type' =&gt; 'post',
'hierarchical' =&gt; false,
'rewrite' =&gt; false,
'query_var' =&gt; false,
'supports' =&gt; array('title', 'editor', 'author')
));</pre>
</p>
<h2>New registration process</h2>
<p>Finally we can choose our own username and password instead of creating the default admin profile. This is also a lot safer because most hacker knows the default username of the first profile created on your wordpress site is admin, and will use it to hack into your site.</p>
<p><a href="http://blog.cmstutorials.org/wp-content/uploads/custom_registration.png"><img src="http://blog.cmstutorials.org/wp-content/uploads/custom_registration.png" alt="" title="custom_registration" width="785" height="556" class="alignnone size-full wp-image-778" /></a></p>
<h2> New menu management feature</h2>
<p>Instead of updating your theme files online you can now easily manage your menu from your wordpress admin panel. how sweet is that, huh?</p>
<p><a href="http://blog.cmstutorials.org/wp-content/uploads/menu-manager.png"><img src="http://blog.cmstutorials.org/wp-content/uploads/menu-manager.png" alt="" title="menu-manager" width="600" height="419" class="alignnone size-full wp-image-783" /></a></p>
<h2> Custom backgrounds for themes </h2>
<p>Another great update of wordpress 3.0 is the ability to customize your header from your wordpress administration panel. Just click on the image you want to use or upload your own image. It&#8217;s that simple, even a monkey can do it.</p>
<p><a href="http://blog.cmstutorials.org/wp-content/uploads/custom_header.png"><img src="http://blog.cmstutorials.org/wp-content/uploads/custom_header.png" alt="" title="custom_header" width="981" height="734" class="alignnone size-full wp-image-784" /></a></p>
<h2> New theme <strong>Twenty Ten</strong></h2>
<p>With all the sublime updates of wordpress 3.0 (custom post types, menu management, edit header&#8230;) it is obvious to release new default template. This template is perfect to get started in wordpress 3.0 as it holds all the new template features.</p>
<p><a href="http://blog.cmstutorials.org/wp-content/uploads/new_theme.png"><img src="http://blog.cmstutorials.org/wp-content/uploads/new_theme.png" alt="" title="new_theme" width="994" height="642" class="alignnone size-full wp-image-786" /></a></p>
<h2>Other updates</h2>
<ul>
<li>Bulk theme update ability</li>
<li>Improved custom post types</li>
<li>Improved custom taxonomies</li>
<li>Standalone WordPress and WPMU code merged and is called Multisite</li>
</ul>
<p>Need more reasons? check the <a href="http://codex.wordpress.org/Version_3.0" target="_blank">Codex</a></p>
<h2>Download wordpress 3.0</h2>
<p>The developers of wordpress announced last week that the <a href="http://wordpress.org/development/2010/05/wordpress-3-0-release-candidate/" target="_blank">Wordpress 3.0 RC1</a> was released and could be downloaded at <a href="http://wordpress.org/wordpress-3.0-RC1.zip" target="_blank">http://wordpress.org/wordpress-3.0-RC1.zip</a>.</p>
<p>Like it is mentioned in their post, RC comes right after the beta but just before the final release, wordpress 3.0 should be ready but their might still be some bugs.</p>
<h2>Useful reading</h2>
<ul>
<li>
<p><a href="http://net.tutsplus.com/tutorials/wordpress/introducing-wordpress-3-custom-taxonomies/" target="_blank">Introducing WordPress 3 Custom Taxonomies</a></p>
</li>
<li>
<p><a href="http://kovshenin.com/archives/custom-post-types-in-wordpress-3-0/" target="_blank" class="broken_link">Custom Post Types in WordPress 3.0</a></p>
</li>
<li>
<p><a href="http://ottopress.com/2010/wordpress-3-0-multisite-domain-mapping-tutorial/" title="Permanent Link to WordPress 3.0: Multisite Domain Mapping Tutorial" target="_blank" rel="bookmark">WordPress 3.0: Multisite Domain Mapping Tutorial</a></p>
</li>
</ul>
<p>Got your own reason to love wordpress? we&#8217;d love to hear about it :)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cmstutorials.org/posts/general/5-reasons-why-you-should-love-wordpress-3-0/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make the category of your post stand out more</title>
		<link>http://blog.cmstutorials.org/posts/tutorials/how-to-make-the-category-of-your-post-stand-out-more</link>
		<comments>http://blog.cmstutorials.org/posts/tutorials/how-to-make-the-category-of-your-post-stand-out-more#comments</comments>
		<pubDate>Thu, 03 Sep 2009 11:28:32 +0000</pubDate>
		<dc:creator>krike</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[ribbons]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blog.cmstutorials.org/?p=465</guid>
		<description><![CDATA[In this tutorial I will teach you how to make the category of your posts in wordpress stand out more using ribbons.
Our goal

www.iv-designs.org
Let&#8217;s get started
First of all you must design your ribbons, if you don&#8217;t have time or don&#8217;t want to waste time designing ribbons you can always purchase the Web ribbon set at graphicriver.net.
When [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial I will teach you how to make the category of your posts in wordpress stand out more using ribbons.</p>
<h2>Our goal</h2>
<p><a href="http://blog.cmstutorials.org/wp-content/uploads/example_ivdesigns.png" target="_blank"><img class="alignnone size-full wp-image-466" title="example_ivdesigns" src="http://blog.cmstutorials.org/wp-content/uploads/example_ivdesigns.png" alt="example_ivdesigns" width="500" height="544" /></a></p>
<p><a href="http://iv-designs.org" target="_blank">www.iv-designs.org</a></p>
<h2>Let&#8217;s get started</h2>
<p>First of all you must design your ribbons, if you don&#8217;t have time or don&#8217;t want to waste time designing ribbons you can always purchase the <a href="http://graphicriver.net/item/web-ribbon-set/39406/?ref=krike" target="_blank">Web ribbon set</a> at graphicriver.net.</p>
<p>When saving your ribbons make sure that u save them using the name of the category. so if you created a category <strong>Icons</strong> make sure to save it as <strong>Icons</strong>_ribbon.png (case sensitive !!).</p>
<p>When finished, upload all the ribbons to the images map of your wordpress theme.</p>
<h2>The code</h2>
<p>open your <strong>index.php</strong> and find the openingstag for your post (this could be a partial search!)</p>
<p>The theme at iv-designs.org starts with</p>
<pre class="brush: php;">&lt;div id=&quot;site-&lt;?php the_ID(); ?&gt;&quot;&gt;</pre>
<p>and in the wordpress default theme</p>
<pre class="brush: php;">&lt;div &lt;?php post_class() ?&gt; id=&quot;post-&lt;?php the_ID(); ?&gt;&quot;&gt;</pre>
<p>After this line add</p>
<pre class="brush: php;">&lt;?php
$cat = get_the_category($post-&gt;ID);
$category = $cat[0]-&gt;cat_name;
?&gt;
&lt;div&gt;&lt;img src=&quot;&lt;?php echo bloginfo('url'); ?&gt;/wp-content/themes/YOUR_THEME/images/&lt;?php echo $category; ?&gt;_ribbon.png&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;</pre>
<p>Let&#8217;s have a look at this code, first we grab the category of that particular post ($post-&gt;ID). This will return an array and it&#8217;s the name we want ($cat[0]-&gt;cat_name)which we then store in the variable $category.</p>
<p>We then create a new div with class <strong>catthumb</strong>, and open the image tag with the complete path to the images map of our theme (make sure to replace <strong>YOUR_THEME</strong> with name of your theme). we then use the $category variable (which contains the name of the category where the post was posted in) to link to the correct image.</p>
<p>the only thing left to do is style it to position the ribbon where we want<br />
add this to your <strong>style.css</strong></p>
<pre class="brush: css;">.catthumb
{
height:115px;
left:1px;
position:absolute;
top:1px;
width:116px;
}</pre>
<p>You can always set left and top higher or lower to fit your needs.</p>
<p><strong>Things to keep in mind</strong></p>
<ul>
<li>make sure the height and width is the same as your image.</li>
<li>The post div should have (in the css) position: relative; otherwise your ribbon will be positioned absolutely according to your document instead of your post div.</li>
</ul>
<h2>Conclusion!</h2>
<p>I hope you learned how to make the category of your post stand out more and how to manipulate your url with variables to make it more dynamic and link to the correct image instead of using a switch to go through all your categories.</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 1197px; width: 1px; height: 1px;">http://graphicriver.net/item/web-ribbon-set/39406/?ref=krike</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.cmstutorials.org/posts/tutorials/how-to-make-the-category-of-your-post-stand-out-more/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a wordpress showcase theme</title>
		<link>http://blog.cmstutorials.org/posts/tutorials/create-a-wordpress-showcase-theme</link>
		<comments>http://blog.cmstutorials.org/posts/tutorials/create-a-wordpress-showcase-theme#comments</comments>
		<pubDate>Sun, 12 Jul 2009 15:28:25 +0000</pubDate>
		<dc:creator>krike</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[showcase]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://blog.cmstutorials.org/?p=261</guid>
		<description><![CDATA[1. Tutorial
This will be our end result

In this tutorial we will be using the wordpress default theme to show you how easy it is to create a showcase theme.  First replace the narrowcolumn class in your style.css with the following

.narrowcolumn {
float: left;
padding: 0 0 20px 15px;
margin: 0px 0 0;
width: 540px;
}

Open index.php and find the [...]]]></description>
			<content:encoded><![CDATA[<h2>1. Tutorial</h2>
<p>This will be our end result</p>
<p><a href="http://blog.cmstutorials.org/wp-content/uploads/endresult_showcasetheme1.png"><img class="alignnone size-large wp-image-263" title="endresult_showcasetheme" src="http://blog.cmstutorials.org/wp-content/uploads/endresult_showcasetheme1-533x1024.png" alt="endresult_showcasetheme" width="533" height="1024" /></a></p>
<p>In this tutorial we will be using the wordpress default theme to show you how easy it is to create a showcase theme.  First replace the narrowcolumn class in your style.css with the following</p>
<pre class="brush: css;">
.narrowcolumn {
float: left;
padding: 0 0 20px 15px;
margin: 0px 0 0;
width: 540px;
}
</pre>
<p>Open index.php and find the code in the image below.</p>
<p><a href="http://blog.cmstutorials.org/wp-content/uploads/post_class1.jpg"><img class="alignnone size-full wp-image-267" title="post_class" src="http://blog.cmstutorials.org/wp-content/uploads/post_class1.jpg" alt="post_class" width="484" height="56" /></a></p>
<p>Replace it with this code.</p>
<pre class="brush: php;">&lt;div class=&quot;showcase&quot;&gt;</pre>
<p>Add the following styles to your stylesheet.</p>
<pre class="brush: css;">
.showcase
{
width: 250px;
height: 270px;
float: left;
border: 1px solid #CFCFCF;
margin: 4px;
padding: 4px;
}

.showcase h2
{
padding: 2px;
margin: 0px;
}

.showcasethumb
{
width: 230px;
height: 160px;
}
</pre>
<p>Back to index.php find the following code</p>
<pre class="brush: php;">&lt;?php the_content('Read the rest of this entry &amp;amp;raquo;'); ?&gt;</pre>
<p>Replace it with</p>
<pre class="brush: php;">&lt;?php $homethumb = get_post_meta($post-&gt;ID,'homethumb', true);?&gt;
&lt;img class=&quot;showcasethumb&quot; src=&quot;&lt;?php echo bloginfo('url').&quot;/wp-content/uploads/&quot;.$homethumb; ?&gt;.jpg&quot; alt=&quot;&quot;/&gt;
</pre>
<h2>2. Usage</h2>
<p>First create a 230*160 image preview, when creating a new post upload your preview image.</p>
<p><a href="http://blog.cmstutorials.org/wp-content/uploads/image_title1.png"><img class="alignnone size-medium wp-image-268" title="image_title" src="http://blog.cmstutorials.org/wp-content/uploads/image_title1-300x216.png" alt="image_title" width="300" height="216" /></a></p>
<p>Copy paste the title of the image (see picture above) in your new post as a new custom field, call that custom field <strong>homethumb</strong> and click add custom field.</p>
<p><a href="http://blog.cmstutorials.org/wp-content/uploads/homethumb_customefield1.png"><img class="alignnone size-medium wp-image-269" title="homethumb_customefield" src="http://blog.cmstutorials.org/wp-content/uploads/homethumb_customefield1-300x95.png" alt="homethumb_customefield" width="300" height="95" /></a></p>
<h2>3. Plugins to install</h2>
<p>As you can see from the end result preview we have some star ratings, you will need to install a plugin for this. The plugin name is <strong>WP-PostRatings</strong> by  Lester Chan, you can install it by going to the plugin section of your site, go to add new and type <strong>WP-PostRatings</strong> in the search. Then just click install</p>
<p><a href="http://blog.cmstutorials.org/wp-content/uploads/WP-PostRatings1.png"><img class="alignnone size-medium wp-image-264" title="WP-PostRatings" src="http://blog.cmstutorials.org/wp-content/uploads/WP-PostRatings1-300x74.png" alt="WP-PostRatings" width="472" height="116" /></a></p>
<p>In the index.php find the following code</p>
<p><a href="http://blog.cmstutorials.org/wp-content/uploads/postmetadata1.jpg"><img class="alignnone size-medium wp-image-265" title="postmetadata" src="http://blog.cmstutorials.org/wp-content/uploads/postmetadata1-300x23.jpg" alt="postmetadata" width="622" height="47" /></a></p>
<p>Below add</p>
<pre class="brush: php;">&lt;?php if(function_exists('the_ratings')) { the_ratings(); } ?&gt;</pre>
<p>I modified the settings of the rating plugin so it would show only the star rating and no text. You are free to do whatever you want.</p>
<h2>4. Examples</h2>
<ul>
<li><a href="http://iv-designs.org/">www.iv-designs.org</a></li>
<li><a href="http://tinyurl.com/m8q2f8">http://themeforest.net/item/design-showcase/19791</a></li>
<li><a href="http://tinyurl.com/ntk9p7">http://themeforest.net/item/showcase-theme/18025</a></li>
<li><a href="http://tinyurl.com/lglazr">http://themeforest.net/item/folio-showcase/45056</a></li>
<li><a href="http://wthemes.com/">http://wthemes.com/</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.cmstutorials.org/posts/tutorials/create-a-wordpress-showcase-theme/feed</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Wordpress top tutorials</title>
		<link>http://blog.cmstutorials.org/posts/general/wordpress-top-tutorials</link>
		<comments>http://blog.cmstutorials.org/posts/general/wordpress-top-tutorials#comments</comments>
		<pubDate>Mon, 20 Apr 2009 07:52:06 +0000</pubDate>
		<dc:creator>krike</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://blog.cmstutorials.org/?p=224</guid>
		<description><![CDATA[Plugins
The 13 Most Essential Plugins for WordPress


WordPress is a very powerful and flexible blog/content management system, but the thousands of plugins really help to extend the basic functionality. Here are 13 essential plugins that you should immediately install after finishing the WordPress installation.  Read this article/screencast »
WP Tutorial: Your first WP plugin

Here it is, [...]]]></description>
			<content:encoded><![CDATA[<h1>Plugins</h1>
<h3>The 13 Most Essential Plugins for WordPress</h3>
<p><a title="test" rel="lightbox[krike]" href="http://nettuts.s3.amazonaws.com/245_wordpressPlugins/images/wordpress-plugins.png"><img src="http://nettuts.s3.amazonaws.com/245_wordpressPlugins/images/wordpress-plugins.png" alt="test" width="200" height="200" /></a><br />
<small><a title="Posts by Trevor Davis" href="http://net.tutsplus.com/author/trevordavis/"></a></small></p>
<div class="text"><a href="http://wordpress.org/">WordPress</a> is a very powerful and flexible blog/content management system, but the thousands of <a href="http://wordpress.org/extend/plugins/">plugins</a> really help to extend the basic functionality. Here are 13 essential plugins that you should immediately install after finishing the WordPress installation.  <a href="http://download.macromedia.com/pub/labs/kuler/kuler_desktop_061407.air">Read this article</a><a href="http://net.tutsplus.com/articles/web-roundups/the-13-most-essential-plugins-for-wordpress/">/screencast</a><a href="http://download.macromedia.com/pub/labs/kuler/kuler_desktop_061407.air"> »</a></p>
<h3>WP Tutorial: Your first WP plugin</h3>
<h3><a rel="lightbox[roadtrip]" href="#"><img class="alignnone size-full wp-image-226" title="wordpress_plugin_creation" src="http://blog.cmstutorials.org/wp-content/uploads/wordpress_plugin_creation.jpg" alt="wordpress_plugin_creation" width="299" height="206" /></a></h3>
<p>Here it is, a video guide to creating your first WordPress plugin (in under 5 minutes!). If people like this enough, I might do these kinds of tutorials on a regular basis.  <a href="http://markjaquith.wordpress.com/2006/03/04/wp-tutorial-your-first-wp-plugin/">Read this article/screencast »</a></p>
<h3>How to make a wordpress plugin</h3>
<p><a rel="lightbox[roadtrip]" href="#"><img class="alignnone size-full wp-image-227" title="wordpress_plugin_creation2" src="http://blog.cmstutorials.org/wp-content/uploads/wordpress_plugin_creation2.jpg" alt="wordpress_plugin_creation2" width="299" height="206" /></a> Here another video tutorial on how to create a wordpress plugin  <a href="http://weblogtoolsvideos.com/video/How-to-make-a-wordpress-plugi">Read this article/screencast »</a></p>
<div class="text">
<h3>Create a Custom WordPress Plugin From Scratch</h3>
<p><a rel="lightbox[roadtrip]" href="#"><img class="alignnone" title="wplugin" src="http://nettuts.s3.amazonaws.com/186_wordPressPlugin/wplugin.png" alt="" width="200" height="200" /></a> <small><a title="Posts by Cristian Lupu" href="http://net.tutsplus.com/author/cristianlupu/"></a></small></p>
<div class="text">This tutorial will describe the implementation of a Wordpress plugin starting from scratch. The plugin will connect to an external OSCommerce database and display random products on your Wordpress site. It also implements a configuration page for the Wordpress admin panel.  <a href="http://net.tutsplus.com/tutorials/wordpress/creating-a-custom-wordpress-plugin-from-scratch/">Read this article/screencast »</a></p>
<h3>The Ultimate Guide to Building a Wordpress Plugin</h3>
<p><a rel="lightbox[roadtrip]" href="#"><img class="alignnone" title="wordpress ultimate guide" src="http://nettuts.s3.amazonaws.com/160_wp-plugins/wordpress.jpg" alt="" width="200" height="200" /></a> <small><a title="Posts by Glen Stansberry" href="http://net.tutsplus.com/author/glen-stansberry/"></a></small></p>
<div class="text">When it comes to adding extra functionality to a Wordpress blog, Wordpress users typically go and search for a plugin that might suit their needs. There are often plugins created for basic extended functionality, but what happens when you can&#8217;t find the perfect plugin for your needs? It might be easier to just create the plugin yourself. If you think you&#8217;d like to take the plunge into writing a Wordpress plugin, here are some essential resources and tips to guide you on your way. This will carry you from the earliest stages of plugin creation to promoting your newly-created plugin, and everything in between.  <a href="http://net.tutsplus.com/articles/the-ultimate-guide-to-building-a-wordpress-plugin/">Read this article/screencast »</a></p>
<h3>Anatomy of a WordPress Plugin</h3>
<p><a rel="lightbox[roadtrip]" href="#"><img class="alignnone" title="anatomy" src="http://nettuts.s3.amazonaws.com/151_wpPlugin/200x200.png" alt="" width="200" height="200" /></a> <small><a title="Posts by Jarkko Laine" href="http://net.tutsplus.com/author/jarkkolaine/"></a></small></p>
<div class="text">WordPress is well known for its amazing collection of free plugins. There is one for almost every need 	you can think of, from backing up your WordPress installation to asking for a cup of coffee 	or fighting spam.  But there are times when none of the available plugins seem to quite do the trick you are looking for. To help you in moments like that, this tutorial will guide you through every step of building a simple, widgetized WordPress plugin with settings.  <a href="http://net.tutsplus.com/tutorials/wordpress/anatomy-of-a-wordpress-plugin/">Read this article/screencast »</a></p>
<h1>Themes</h1>
<h3>New WP Video Series</h3>
<p><a rel="lightbox[roadtrip]" href="#"><img class="alignnone" title="wordpress week" src="http://themeforest.s3.amazonaws.com/41_wordPressForDesigners/wordPressWeek.jpg" alt="" width="200" height="200" /></a></p>
<div class="text">Due to high demand, we&#8217;re launching a new WordPress video series on the <a href="http://blog.themeforest.net/">ThemeForest Blog</a> that will run alongside the <a href="http://blog.themeforest.net/tutorials/diving-into-php-video-series/">&#8220;Diving into PHP&#8221;</a> screencasts. It is our hope that these two series, viewed back-to-back, will turn you into a dynamite PHP/WordPress designer.  <a href="http://net.tutsplus.com/videos/screencasts/new-wp-video-series-and-free-rockstar-book/">Read this article/screencast »</a></p>
<div class="title">
<h3>Take your Wordpress theme to the next level</h3>
<h3><a rel="lightbox[roadtrip]" href="#"><img class="alignnone" title="wordpress to the next level" src="http://themeforest.s3.amazonaws.com/52_wp/200x200.jpg" alt="" width="200" height="200" /></a></h3>
<p><span class="titlelink"><a title="View all posts in Tutorials" rel="category tag" href="http://blog.themeforest.net/category/tutorials/"></a></span></p>
</div>
<p>Everyone seems to be creating WP themes for public consumption. Make yours stand out among the rest!  <a href="http://blog.themeforest.net/tutorials/take-your-wordpress-theme-to-the-next-level/">Read this article/screencast »</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.cmstutorials.org/posts/general/wordpress-top-tutorials/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
