<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Colorburned</title>
	
	<link>http://colorburned.com</link>
	<description>Graphic design resources, tutorials, and more!</description>
	<lastBuildDate>Fri, 10 May 2013 13:24:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Colorburned" /><feedburner:info uri="colorburned" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>Colorburned</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Helpful Tutorials for Building your First WordPress Plugin</title>
		<link>http://feedproxy.google.com/~r/Colorburned/~3/wzFVHUjJXqo/</link>
		<comments>http://colorburned.com/helpful-tutorials-first-wp-plugins/#comments</comments>
		<pubDate>Fri, 10 May 2013 13:24:39 +0000</pubDate>
		<dc:creator>Jake Rocheleau</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://colorburned.com/?p=54203</guid>
		<description><![CDATA[<p>Even developers who are familiar with the backend Wordpress infrastructure may not have an easy time getting into plugin development. This requires a sincere level of commitment to study the ideologies and best practices. And although this will not take more than a week at most, it definitely requires a strong attitude towards working in PHP.</p>

<p><a href="http://dribbble.com/shots/445182-Wordpress-Icons"><img src="http://colorburned.com/wp-content/uploads/wordpress-dribbble-plugin-icons.png" alt="Wordpress plugins icon designs learn tutorials dribbble" /></a></p>

<p>I want to present a small collection of online tutorials geared towards educating new users about plugin development. If you are not familiar programming in PHP then this may be a step too far. Learning how to <a href="http://colorburned.com/methods-for-customizing-the-wordpress-login-form/">theme Wordpress</a> may be an easier place to get started. But I think anybody with a firm commitment will be able to learn this system quickly and efficiently.</p>]]></description>
			<content:encoded><![CDATA[<p>Even developers who are familiar with the backend WordPress infrastructure may not have an easy time getting into plugin development. This requires a sincere level of commitment to study the ideologies and best practices. And although this will not take more than a week at most, it definitely requires a strong attitude towards working in PHP.</p>
<p><a href="http://dribbble.com/shots/445182-Wordpress-Icons"><img src="http://colorburned.com/wp-content/uploads/wordpress-dribbble-plugin-icons.png" alt="Wordpress plugins icon designs learn tutorials dribbble" /></a></p>
<p>I want to present a small collection of online tutorials geared towards educating new users about plugin development. If you are not familiar programming in PHP then this may be a step too far. Learning how to <a href="http://colorburned.com/methods-for-customizing-the-wordpress-login-form/">theme WordPress</a> may be an easier place to get started. But I think anybody with a firm commitment will be able to learn this system quickly and efficiently.</p>
<p><span id="more-54203"></span></p>
<h2>Getting the Basics</h2>
<p>Quite possibly one of the best places to start is within the <a href="https://codex.wordpress.org/Writing_a_Plugin">WordPress Codex</a>. They have entire articles and documentation built around structuring your own plugins. This link provides the sample template you will need for any plugin, along with handling functions and global variables.</p>
<p>Now to move a bit into more complicated areas I have always liked Net Tuts+. The whole Tuts+ library is full of great information written by very smart developers. I found a great article on <a href="http://net.tutsplus.com/tutorials/wordpress/your-first-wordpress-plugin-simple-optimization/">WordPress plugin optimization</a> which delves into areas like new database entries, dealing with permalinks and good SEO, plus adding features and documentation with the plugin core. All of these tips should be an excellent starting point for newcomers.</p>
<p><a href="http://net.tutsplus.com/tutorials/wordpress/your-first-wordpress-plugin-simple-optimization/"><img src="http://colorburned.com/wp-content/uploads/net-tutsplus-tutorials-wordpress.png" alt="tutorials online wordpress wp tuts article" /></a></p>
<p>Now if you really want to delve into deeper topics check out the <a href="http://wp.tutsplus.com/tag/wordpress-plugin-development/">WP Tuts+ plugin category</a> which has a whole slew of new articles related to WordPress plugin development. Their entire website is dedicated to WordPress tutorials. And the quality of each post is simply outstanding. Many of the tutorials offer free source code as well, just to have something you can work with instead of starting from scratch.</p>
<h2>Additional Side Features</h2>
<p>The plugins API within WordPress is very expansive to encompass many of the typical functions. One such area is <a href="http://www.makeuseof.com/tag/how-to-create-wordpress-widgets/">creating widgets</a> to be added into your sidebar or theme sections. These widgets may be any number of cool features like category listings, meta links, contact forms&#8230; honestly anything you can build.</p>
<p>Notice that widgets are also placed in the same folder as your plugins &#8211; namely <strong>/wp-content/plugins/</strong>. This means you can follow many of the same rules for creating widgets and they are even easier to install. You have full control over placement and where these appear in your theme. And it can be adjusted quickly by switching between new themes in WordPress.</p>
<p>If you need a more in-depth article I recommend <a href="http://www.sitepoint.com/define-your-own-wordpress-widgets/">this tutorial by Sitepoint</a>. It starts off by explaining widgets and how you will use them within the Administration panel. Then you can move into the backend to start coding your own widgets into PHP files. It is actually a lot of fun and can save you on excess development time.</p>
<h2>Responsive Plugins</h2>
<p>This <a href="http://designmodo.com/responsive-wordpress-plugin/">in-depth tutorial</a> published on Designmodo offers some insight towards a more complicated manner of plugin development. There are many times you will be handling unique page content such as videos, images, or slideshow media. Responsive mobile designs are very popular and new plugins may want to keep up with this standard.</p>
<p><a href="http://designmodo.com/responsive-wordpress-plugin/"><img src="http://colorburned.com/wp-content/uploads/designmodo-blog-responsive-wordpress.png" alt="designmodo 2013 web design wordpress plugin responsive" /></a></p>
<p>The ability to load dynamic content via Ajax has become more cohesive over the past decade. And now this whole process has been given an easier home in the WordPress core. Go through some of the example code samples and you will surely pick up a few tips. I have been impressed with the improvements and I feel WordPress can only continue adding better features as we move forward.</p>
<h2>Final Thoughts</h2>
<p>There are plenty of developers who never move into the realm of building plugins. Sometimes this just doesn&#8217;t interest people who would rather focus on the frontend &#8211; and there is certainly nothing wrong with this attitude! However I do hope these resources will provide a starting point for some curious minds.</p>
<p>This process of studying the syntax of a generic plugin is only the beginning. Then you have to think of your own ideas and try building them into WordPress. It is an exciting yet stressful endeavor, so be sure and take breaks every-so-often but never give up! When you bump into trouble post a new thread on <a href="http://wordpress.stackexchange.com/">WordPress Answers</a>. The members are very smart and often nice enough to help you out with a detailed solution.</p>
]]></content:encoded>
			<wfw:commentRss>http://colorburned.com/helpful-tutorials-first-wp-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://colorburned.com/helpful-tutorials-first-wp-plugins/</feedburner:origLink></item>
		<item>
		<title>WordPress Bootcamp: Last Call Early Bird</title>
		<link>http://feedproxy.google.com/~r/Colorburned/~3/yV5Is-5dkhk/</link>
		<comments>http://colorburned.com/wordpress-bootcamp-last-call-early-bird/#comments</comments>
		<pubDate>Tue, 30 Apr 2013 14:39:30 +0000</pubDate>
		<dc:creator>brantwilson</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://colorburned.com/?p=54264</guid>
		<description><![CDATA[<p>Last week I mentioned, “Due to popular demand, and the growing desire to learn WordPress, LearnWebDevelopment.com, has announced that they’ll host one of their hugely popular WordPress Bootcamps in May.”</p>
<p>The only catch is that it’s starting soon &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Last week I mentioned, “Due to popular demand, and the growing desire to learn WordPress, LearnWebDevelopment.com, has announced that they’ll host one of their hugely popular WordPress Bootcamps in May.”</p>
<p>The only catch is that it’s starting soon and, because of that, early-bird pricing is also ending soon: Thursday, May 2, 2013 at midnight. After midnight Thursday, the offer is over.</p>
<p>If you&#8217;d like to quickly become an in-demand WordPress website designer, <a href="http://www.learnwebdevelopment.com/cmd.php?af=1533406">sign up here now</a>.</p>
<p>Remember, all of LearnWebDevelopment.com’s WordPress Bootcamps come with a risk-free lifetime money-back guarantee. <a href="http://www.learnwebdevelopment.com/cmd.php?af=1533406">Get the details here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://colorburned.com/wordpress-bootcamp-last-call-early-bird/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://colorburned.com/wordpress-bootcamp-last-call-early-bird/</feedburner:origLink></item>
		<item>
		<title>Back By Popular Demand</title>
		<link>http://feedproxy.google.com/~r/Colorburned/~3/JkqMKTFkyCo/</link>
		<comments>http://colorburned.com/back-by-popular-demand/#comments</comments>
		<pubDate>Thu, 25 Apr 2013 03:25:45 +0000</pubDate>
		<dc:creator>brantwilson</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://colorburned.com/?p=54258</guid>
		<description><![CDATA[LearnWebDevelopment.com initially planned to wait until Fall 2013 to host another WordPress Bootcamp. But, their students had other intentions. 

Due to popular demand, and the growing desire to learn WordPress, LearnWebDevelopment.com, has announced that they’ll host one of their hugely popular WordPress Bootcamps in May.

<a href="http://www.learnwebdevelopment.com/cmd.php?af=1533406">Check it out today</a> because:]]></description>
			<content:encoded><![CDATA[<p>LearnWebDevelopment.com initially planned to wait until Fall 2013 to host another WordPress Bootcamp. But, their students had other intentions. </p>
<p>Due to popular demand, and the growing desire to learn WordPress, LearnWebDevelopment.com, has announced that they’ll host one of their hugely popular WordPress Bootcamps in May.</p>
<p><a href="http://www.learnwebdevelopment.com/cmd.php?af=1533406">Check it out today</a> because:<br />
<span id="more-54258"></span></p>
<p>1. It starts soon.</p>
<p>2. You’ll save $200 with early-bird pricing. (But only until May 2, 2013.)</p>
<p>3. These bootcamps fill up fast. And, because so many are waiting for this one, I recommend enrolling today to save your seat.</p>
<p><a href="http://www.learnwebdevelopment.com/cmd.php?af=1533406">Grab your seat today</a> and start building feature-rich WordPress websites AND working with clients in just a few weeks.</p>
<p>In case you forgot, here’s a brief overview of the WordPress Bootcamp:</p>
<p>In this WordPress Bootcamp, you’ll learn everything you need to know – from the very basics (like how to choose a domain name) all the way to customizing your new website and even how to find clients.</p>
<p>These WordPress Bootcamps are so popular because they include:</p>
<p>- LearnWebDevelopment.com’s complete WordPress training videos so you can download and watch again and again.</p>
<p>- Three live sessions with our WordPress experts to better understand what you’re learning and ask any questions you might have.</p>
<p>- Personal 1-on-1 support from LearnWebDevelopment.com’s experts so you’ll never be alone as you learn.</p>
<p><a href="http://www.learnwebdevelopment.com/cmd.php?af=1533406">See all the benefits – and their 100% money back guarantee – here.</a></p>
<p>Early-bird pricing ends Thursday, May 2, 2013 (at midnight central time).</p>
]]></content:encoded>
			<wfw:commentRss>http://colorburned.com/back-by-popular-demand/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://colorburned.com/back-by-popular-demand/</feedburner:origLink></item>
	</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced (Requested URI contains query)

 Served from: colorburned.com @ 2013-05-19 17:02:43 by W3 Total Cache -->
