<?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>StylizedWeb.com</title>
	
	<link>http://stylizedweb.com</link>
	<description>Web Design + Wordpress Tutorials &amp; Resources</description>
	<lastBuildDate>Mon, 16 Aug 2010 17:43:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/stylizedweb" /><feedburner:info uri="stylizedweb" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>stylizedweb</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Use the Link Description in Wordpress 3.0 Menus</title>
		<link>http://feedproxy.google.com/~r/stylizedweb/~3/ml5lhBbLlXg/</link>
		<comments>http://stylizedweb.com/2010/08/16/use-the-link-description-in-wordpress-3-0-menus/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 17:43:49 +0000</pubDate>
		<dc:creator>Dejan Cancarevic</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[3.0]]></category>
		<category><![CDATA[description]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[functionality]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[subtitle]]></category>
		<category><![CDATA[title]]></category>

		<guid isPermaLink="false">http://stylizedweb.com/?p=426</guid>
		<description><![CDATA[One of the great new features that the recent Wordpress 3.0 release has given us is the new and improved menu system. Those of you who have built complex websites in Wordpress will undoubtably share my pain in working with menu systems in Wordpress. Previously it seemed that we would have to use a mixture [...]]]></description>
			<content:encoded><![CDATA[<p>One of the great new features that the recent Wordpress 3.0 release has given us is the new and improved menu system. Those of you who have built complex websites in Wordpress will undoubtably share my pain in working with menu systems in Wordpress. Previously it seemed that we would have to use a mixture of plug-in cocktails and hard coded sub-menus.</p>
<p>The new menu system alleviates a lot of these problems and gives us easy control over our menus. With multiple menu support, drag and drop ordering and easy title changes it is hard to imagine needing much more.</p>
<p>The new system even addresses a challenge I have always had with Wordpress, and that is of using link descriptions. Link descriptions typically are one or two lines of descriptive text below a primary navigation item used to  describe the section or link. They are a nice visual touch and can really enhance usability in a significant way.</p>
<p><img class="alignright size-full wp-image-431" title="link-desc" src="http://stylizedweb.com/wp-content/uploads/2010/08/link-desc.png" alt="" width="491" height="165" /></p>
<p>Until now there wasn't a great way to do this, even with the use of plug-ins. Even with the use of custom fields and some hacking it was never perfect.</p>
<p>The new menu system allows us to do a bit more customization to our menus, such as adding custom classes, titles and even including a description.</p>
<h2>Working with Link Descriptions</h2>
<p>The first step is of course enabling custom menu support through your theme. This can be done with the following simple code in your functions.php file:</p>
<pre><code>add_action( 'init', 'register_menus' );
     function register_menus() {
           register_nav_menus(
                array(
                     'primary-menu' =&gt; __( 'Primary Menu' )
                 )
            );
      }</code></pre>
<p><a href="http://stylizedweb.com/wp-content/uploads/2010/08/screen-options1.png"><img class="alignnone size-full wp-image-433" title="screen-options" src="http://stylizedweb.com/wp-content/uploads/2010/08/screen-options1.png" alt="" width="605" height="191" /></a>You will then find a "Menu" link in your appearance tab with in the Wordpress administration interface. Once clicked on make sure that you turn on "link description" with in the Screen Options.</p>
<p>At this point we can now define where we would like our menu to display in our theme by adding the following function to our theme files:</p>
<pre><code>&lt;?php wp_nav_menu( array( 'theme_location' =&gt; 'primary-menu' ) ); ?&gt;</code></pre>
<p>This will output the menu with our defined order and menu titles. It won't however output the description by default, in order to do so we will have to take advantage of the $walker function with in Wordpress.</p>
<p>This is done by creating a custom class in our functions.php, such as the following:</p>
<p><br class="clear" /></p>
<pre><code>class My_Walker extends Walker_Nav_Menu
{
	function start_el(&amp;$output, $item, $depth, $args) {
		global $wp_query;
		$indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';

		$class_names = $value = '';

		$classes = empty( $item-&gt;classes ) ? array() : (array) $item-&gt;classes;

		$class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) );
		$class_names = '';

		$output .= $indent . '&lt;li id="menu-item-'. $item-&gt;ID . '"' . $value . $class_names .'&gt;';

		$attributes  = ! empty( $item-&gt;attr_title ) ? ' title="'  . esc_attr( $item-&gt;attr_title ) .'"' : '';
		$attributes .= ! empty( $item-&gt;target )     ? ' target="' . esc_attr( $item-&gt;target     ) .'"' : '';
		$attributes .= ! empty( $item-&gt;xfn )        ? ' rel="'    . esc_attr( $item-&gt;xfn        ) .'"' : '';
		$attributes .= ! empty( $item-&gt;url )        ? ' href="'   . esc_attr( $item-&gt;url        ) .'"' : '';

		$item_output = $args-&gt;before;
		$item_output .= '&lt;a'. $attributes .'&gt;';
		$item_output .= $args-&gt;link_before . apply_filters( 'the_title', $item-&gt;title, $item-&gt;ID ) . $args-&gt;link_after;
		$item_output .= '&lt;span&gt;' . $item-&gt;description . '&lt;/span&gt;';
		$item_output .= '&lt;/a&gt;';
		$item_output .= $args-&gt;after;

		$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
	}
}</code></pre>
<p>This will add the description with in a span element when we tweak our template code to the following:</p>
<pre><code>&lt;?php
       $walker = new My_Walker;
	wp_nav_menu(array(
                'theme_location' =&gt; 'primary-menu',
		'walker' =&gt; $walker
	));
?&gt;</code></pre>
<p>Tada, now we can have menu descriptions such as on this <a href="http://100.jrn.msu.edu" target="_new">Buddypress project we worked on here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://stylizedweb.com/2010/08/16/use-the-link-description-in-wordpress-3-0-menus/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://stylizedweb.com/2010/08/16/use-the-link-description-in-wordpress-3-0-menus/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</feedburner:origLink></item>
		<item>
		<title>The Business Case for Microformats</title>
		<link>http://feedproxy.google.com/~r/stylizedweb/~3/nzTuB7oyAoA/</link>
		<comments>http://stylizedweb.com/2010/07/02/the-business-case-for-microformats/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 13:56:29 +0000</pubDate>
		<dc:creator>3pointross</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[3.7 designs]]></category>
		<category><![CDATA[benefits]]></category>
		<category><![CDATA[microformats]]></category>

		<guid isPermaLink="false">http://stylizedweb.com/?p=422</guid>
		<description><![CDATA[If you have been reading this blog for the past few months you will be aware that I was given the opportunity to attend the Voices that Matter conference this past weekend. Conferences are refreshing for many reasons including networking, re-energizing you about your passion and of course education. While I have always been aware [...]]]></description>
			<content:encoded><![CDATA[<p>If you have been reading this blog for the past few months you will be aware that I was given the opportunity to attend the Voices that Matter conference this past weekend. Conferences are refreshing for many reasons including networking, re-energizing you about your passion and of course education. While I have always been aware of Microformats, technically knew how to do them and even had a good understanding of what they did, I had never felt compelled to include them in the standard <a href="http://www.3point7designs.com">3.7 DESIGNS</a> development process.</p>
<p>However one of the great presentations from the conference reminded me not only how easy they are to implement but also reminded me of the benefits as well. As a result I have started to write them into the web development standards at 3.7 and have also <a href="http://www.3point7designs.com/blog/2010/07/the-business-case-for-microformats/" target="_blank">posted an article with more information on the company blog</a>. If you are at all interested in Microformats give it a read.</p>
]]></content:encoded>
			<wfw:commentRss>http://stylizedweb.com/2010/07/02/the-business-case-for-microformats/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://stylizedweb.com/2010/07/02/the-business-case-for-microformats/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</feedburner:origLink></item>
		<item>
		<title>Essential Plugins for Wordpress 3.0</title>
		<link>http://feedproxy.google.com/~r/stylizedweb/~3/MFvAas858g4/</link>
		<comments>http://stylizedweb.com/2010/06/22/essential-plugins-for-wordpress-3-0/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 01:27:35 +0000</pubDate>
		<dc:creator>Dejan Cancarevic</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[3.0]]></category>
		<category><![CDATA[custom post types]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://stylizedweb.com/?p=416</guid>
		<description><![CDATA[Wordpress 3.0 is really a revolutionary upgrade compared to Wordpress 2.0. With integrated multi-users, custom post types, custom background images, custom taxonomies, the new menu system and custom header images it is now both a blogging powerhouse and enterprise capable CMS out of the box. Despite the official release only being a week or two ago [...]]]></description>
			<content:encoded><![CDATA[<p>Wordpress 3.0 is really a revolutionary upgrade compared to Wordpress 2.0. With integrated multi-users, custom post types, custom background images, custom taxonomies, the new menu system and custom header images it is now both a blogging powerhouse and enterprise capable CMS out of the box. Despite the official release only being a week or two ago there are already some powerful plugins that will help you take advantage of the new features.</p>
<p>While you are upgrading to Wordpress 3.0 don't hesitate to install these plugins as well.</p>
<h2>Custom Post Type UI</h2>
<p>One of the powerful new features to Wordpress is the ability to create custom post types. This has long been a lacking feature in Wordpress. The custom post types allows you to define custom "types" of content such as listings, locations, employee bios, etc...</p>
<p>The usage of custom post types is not exactly straight forward however. You have to be pretty comfortable working with your functions.php file and even then it is time consuming. Custom Post Type UI allows you to easily define and customize your post types through the Wordpress administration panel using a GUI. Clearly an essential plugin for Wordpress 3.0.</p>
<p><a href="http://wordpress.org/extend/plugins/custom-post-type-ui/" target="_blank">Download Custom Post Type UI Here</a></p>
<h2>WP Post Type UI</h2>
<p>Inspired by Custom Post Type this plug-in takes the same concept to the next level and gives you additional control and customization.</p>
<ul>
<li>True WP user interface look and feel</li>
<li>Add/Edit/Delete dynamic "Post Types" and "Taxonomies"</li>
<li>Search "Post Types" from name and description</li>
<li>Search "Taxonomies" from name and "Post Type"</li>
<li>Matching labels when creating records</li>
<li>Shows post and active taxonomy count</li>
<li>Advanced "Post Types" and "Taxonomies" options</li>
</ul>
<p><a href="http://wordpress.org/extend/plugins/wp-post-type-ui/" target="_blank">Download WP Post Type UI Here</a></p>
<h2>GD Taxonomies Tools</h2>
<p>The ability to define custom tags and taxonomies opens up endless possibilities for Wordpress. We can now use Wordpress to develop custom taxonomies like colors, sizes, locations, etc... Again, list custom post types it can be a bit complicated to figure out and work with. This plugin adds many tools including custom post types and taxonomies management and widget for taxonomies terms cloud.</p>
<p><a href="http://wordpress.org/extend/plugins/gd-taxonomies-tools/" target="_blank">Download GD Taxonomies Tools Here</a></p>
<h2>WP Multi Networks</h2>
<p>While Wordpress Multi User has been around for awhile the new Wordpress 3.0 has merged the two versions of the site and allow the easy development of networks of sites. This plugin is able to turn your multi-site installation of WordPress into many multi-site networks, all surrounding one central user base.</p>
<p>WP Multi Network allows cape wearing super admins to create new network collections of sites, allowing for infinitely extensible site, network, and domain arrangements.</p>
<p><a href="http://wordpress.org/extend/plugins/wp-multi-network/" target="_blank">Download WP Multi Networks Here</a></p>
<h2>WP Title 2</h2>
<p>Once you take advantage of Wordpress custom post types and the menu management tool you are very likely to run into a situation in which you want the title of the page and the title used in the menu would be different. Some content management systems already take advantage of this and now with this plug-in Wordpress does too.</p>
<p>WP Title 2 lets you easily define a different menu label than your page title. This makes the site easier to administer and can improve usability of the site as well.</p>
<p><a href="http://wordpress.org/extend/plugins/wp-title-2/" target="_blank">Download WP Title 2 Here</a></p>
<h2>Post Type Switcher</h2>
<p>Have an existing post that you want to change to a different custom post type? Rather than deleting and recreating simply use this plugin that gives you the capability to switch between posts, pages and custom post types.</p>
<p><a href="http://wordpress.org/extend/plugins/post-type-switcher/" target="_blank">Download Post Type Switcher Here</a></p>
<h2>Multi Post Thumbnails</h2>
<p>While post thumbnails were introduced earlier this is still a great plugin. If you have ever wanted the ability to have more than one post thumbnail than this plugin is for you.</p>
<p><a href="http://wordpress.org/extend/plugins/multiple-post-thumbnails/" target="_blank">Download Multi Post Thumbnails Here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stylizedweb.com/2010/06/22/essential-plugins-for-wordpress-3-0/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		<feedburner:origLink>http://stylizedweb.com/2010/06/22/essential-plugins-for-wordpress-3-0/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</feedburner:origLink></item>
		<item>
		<title>5 Rocking Google Analytics Plugins for Wordpress</title>
		<link>http://feedproxy.google.com/~r/stylizedweb/~3/0qu3HXoXUg0/</link>
		<comments>http://stylizedweb.com/2010/06/03/5-rocking-google-analytics-plugins-for-wordpress/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 08:30:30 +0000</pubDate>
		<dc:creator>3pointross</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[stats]]></category>
		<category><![CDATA[visitors]]></category>

		<guid isPermaLink="false">http://stylizedweb.com/?p=403</guid>
		<description><![CDATA[What is there not to love about Google Analytics? OK, some people may think that Google has gotten a little bit too big and too broad for their own good, but let's face it... Google Analytics is an incredible software package and you can't beat the price. There may be instances where you need a [...]]]></description>
			<content:encoded><![CDATA[<p>What is there not to love about Google Analytics? OK, some people may think that Google has gotten a little bit too big and too broad for their own good, but let's face it... Google Analytics is an incredible software package and you can't beat the price. There may be instances where you need a different web statistics package but 90% of the time Google Analytics fits the bill.</p>
<p>Now pair Google Analytics with another free (and this time open source) solution like Wordpress and well, it is hard not to get a warm fuzzy feeling.</p>
<p>What you may not realize is that you can get a lot more out of this Google and Wordpress pair than simply sticking the tracking number into the footer. There are quite a few rocking Google Analytics plugins that really kick up the functionality of your Google Analytics up a notch. Check them out.</p>
<h2>1. Google Analyticator</h2>
<p><a rel="lightbox" href="http://stylizedweb.com/wp-content/uploads/2010/06/google-analyticator.png"><img class="alignright size-medium wp-image-408" title="google-analyticator" src="http://stylizedweb.com/wp-content/uploads/2010/06/google-analyticator-300x167.png" alt="" width="300" height="167" /></a>This is my favorite plug-in in this area. Not only does it add the javascript needed to start tracking your site, it turns your Wordpress site into a tracking monster! Rather than just tracking the normal "default" elements it also covers:</p>
<ul>
<li>Outbound link tracking of all links on the page, including links not managed by WordPress</li>
<li>Download link tracking</li>
<li>Event tracking with outbound links / downloads instead of the old pageview tracking method</li>
</ul>
<p>It also has plenty of great additional features such as a dashboard widget, front-end visitor widgets, localization and more...</p>
<p><a href="http://wordpress.org/extend/plugins/google-analyticator/" target="_blank">Download Google Analyticator Here</a></p>
<h2>2. Ultimate Google Analytics</h2>
<p><a rel="lightbox" href="http://stylizedweb.com/wp-content/uploads/2010/06/Picture-1.png"><img class="alignright size-medium wp-image-412" title="Picture 1" src="http://stylizedweb.com/wp-content/uploads/2010/06/Picture-1-300x148.png" alt="" width="300" height="148" /></a>This plug-in is on par with Google Analyticator in that not only will it put the necessary google analytics javascript on every page, but it also will track outbound links, downloads and mailto: links. While the default configuration will work for 90% of the users it pays to go through and customize it for your own needs, everything is customizable for your specific situation or need.</p>
<p>The plugin is highly configurable. Read trough the list of features below to get a feeling of what this plugin can do. You can enable and disable all features individually, although the default configuration will suffice for 90% of the users.</p>
<p><a href="http://wordpress.org/extend/plugins/ultimate-google-analytics/" target="_blank">Download Ultimate Google Analytics Here</a></p>
<h2>3. RSS Link Tagger for Analytics</h2>
<p>On many blogs the conversion point is getting new subscribers. Even with services like feedburner you don't always know what is most effective in getting new subscribers as there is no clear way to track an RSS subscription. However with RSS Link Tagger you can actually track your RSS feed using Google analytics to get a better idea as to what types of articles and posts are most effective in recruiting new subscribers.</p>
<p><a href="http://wordpress.org/extend/plugins/rss-link-tagger-for-google-analytics/" target="_blank">Download RSS Link Tagger Here</a></p>
<h2>4. Google Analytics for WordPress</h2>
<p><a rel="lightbox" href="http://stylizedweb.com/wp-content/uploads/2010/06/google-analyticator1.png"><img class="alignright size-medium wp-image-409" title="google-analyticator" src="http://stylizedweb.com/wp-content/uploads/2010/06/google-analyticator1-300x167.png" alt="" width="300" height="167" /></a>Much like Ultimate Google Analytics and Google Analyticator this plugin automatically tracks and segments all outbound links from posts, comment author links, links within comments, blogroll links and other downloads. It even lets you track Adsense clicks! This plugin is great for tracking downloads as it allows you to specify what types of file prefixes should be used as downloads.</p>
<p><a href="http://wordpress.org/extend/plugins/google-analytics-for-wordpress/" target="_blank">Download Google Analytics for Wordpress Here</a></p>
<h2><strong>5. Google Analytics Dashboard</strong></h2>
<p><a rel="lightbox" href="http://stylizedweb.com/wp-content/uploads/2010/06/google-analytics-dashboard.png"><img class="alignright size-medium wp-image-410" title="google-analytics-dashboard" src="http://stylizedweb.com/wp-content/uploads/2010/06/google-analytics-dashboard-237x300.png" alt="" width="237" height="300" /></a>This would be my favorite plugin for client sites. Rather than trying to teach your clients how to login and use Google Analytics (which is an extra step and cumbersome) this plugin puts a view of your analytics data right from your Wordpress dashboard.</p>
<p>Even for savvy users this plugin is a great way to keep track of your sites performance with out having to log into Google Analytics every day.</p>
<p><a href="http://wordpress.org/extend/plugins/google-analytics-dashboard/" target="_blank">Download Google Analytics Dashboard Here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stylizedweb.com/2010/06/03/5-rocking-google-analytics-plugins-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://stylizedweb.com/2010/06/03/5-rocking-google-analytics-plugins-for-wordpress/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</feedburner:origLink></item>
		<item>
		<title>Old Design is New – 33 “Hip” Circles in Web Design</title>
		<link>http://feedproxy.google.com/~r/stylizedweb/~3/Jr2z1S4OmBY/</link>
		<comments>http://stylizedweb.com/2010/05/19/circle-web-design-trend/#comments</comments>
		<pubDate>Wed, 19 May 2010 08:00:44 +0000</pubDate>
		<dc:creator>3pointross</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[circle]]></category>
		<category><![CDATA[trends]]></category>

		<guid isPermaLink="false">http://stylizedweb.com/?p=365</guid>
		<description><![CDATA[A few years ago the "Web 2.0" style was the rage in web design. With the Web 2.0 style we saw badges, reflections, rounded corners and glossy interfaces. As we move forward in web trends things have shifted towards a dramatically different approach. Where rich, complex interfaces and designs were once the "cool" thing to [...]]]></description>
			<content:encoded><![CDATA[<p>A few years ago the "Web 2.0" style was the rage in web design. With the Web 2.0 style we saw badges, reflections, rounded corners and glossy interfaces. As we move forward in web trends things have shifted towards a dramatically different approach. Where rich, complex interfaces and designs were once the "cool" thing to do now more and more designers are moving towards a minimalist approach.</p>
<p>Minimalism is great for several reason, it puts more emphasis on what elements you DO keep on the site, it makes using the site easier and is distraction free.</p>
<p>One of the interesting trends that has come forward with the minimalist look is the use of simple and complete circles in web design. For some reason these were far from common through most of the history of web design. Maybe it is because it is so much simpler to design on the web using boxes and hard angles (due to the limitations of technology). Or maybe it is just a design trend that was popular in previous decades and is just now resurfacing.</p>
<p>Either way there are designers who are putting plenty of personality into their designs with a "circle accent." Take a look at the following:</p>
<h2>1. Monk Design</h2>
<p><a href="http://www.patrickmonkel.nl/"><img class="alignnone size-full wp-image-368" title="Monk Design" src="http://stylizedweb.com/wp-content/uploads/2010/05/Monk-Design.png" alt="" width="605" height="300" /></a></p>
<h2>2. Daring Fireball</h2>
<p><a href="http://daringfireball.net/"><img class="alignnone size-full wp-image-369" title="Daring Fireball" src="http://stylizedweb.com/wp-content/uploads/2010/05/Daring-Fireball.png" alt="" width="605" height="300" /></a></p>
<h2>3. Cool &amp; The Guide</h2>
<p><a href="http://www.coolandtheguide.com/"><img class="alignnone size-full wp-image-370" title="Cool And The Guide - News" src="http://stylizedweb.com/wp-content/uploads/2010/05/Cool-And-The-Guide-News.png" alt="" width="605" height="300" /></a></p>
<h2>4. Tobiashlin</h2>
<p><a href="http://tobiasahlin.com/"><img class="alignnone size-full wp-image-371" title="Tobias Bjerrome Ahlin" src="http://stylizedweb.com/wp-content/uploads/2010/05/Tobias-Bjerrome-Ahlin.png" alt="" width="605" height="300" /></a></p>
<h2>5. Design Schneider</h2>
<p><a href="http://www.designschneider.de/"><img class="alignnone size-full wp-image-372" title="Designschneider" src="http://stylizedweb.com/wp-content/uploads/2010/05/Designschneider.png" alt="" width="605" height="300" /></a></p>
<h2>6. Effektive Design</h2>
<p><a href="http://www.effektivedesign.co.uk/"><img class="alignnone size-full wp-image-373" title="-- Effektive. Graphic Design &amp; Communication --" src="http://stylizedweb.com/wp-content/uploads/2010/05/Effektive.-Graphic-Design-Communication-.png" alt="" width="605" height="300" /></a></p>
<h2>7. Thorsten Van Elten</h2>
<p><a href="http://www.thorstenvanelten.com/"><img class="alignnone size-full wp-image-374" title="Thorsten van Elten" src="http://stylizedweb.com/wp-content/uploads/2010/05/Thorsten-van-Elten.png" alt="" width="605" height="300" /></a></p>
<h2>8. 70 Folk</h2>
<p><a href="http://www.70folk.com/"><img class="alignnone size-full wp-image-375" title="70folk  webdesigner, wordpress, graphiste  Vincent Tavano" src="http://stylizedweb.com/wp-content/uploads/2010/05/70folk-webdesigner-wordpress-graphiste-Vincent-Tavano.png" alt="" width="605" height="300" /></a></p>
<h2>9. Mighty</h2>
<p><a href="http://madebymighty.com/"><img class="alignnone size-full wp-image-376" title="Mighty, a Design Studio" src="http://stylizedweb.com/wp-content/uploads/2010/05/Mighty-a-Design-Studio.png" alt="" width="605" height="300" /></a></p>
<h2>10. MIX Online</h2>
<p><a href="http://visitmix.com/"><img class="alignnone size-full wp-image-377" title="MIX Online" src="http://stylizedweb.com/wp-content/uploads/2010/05/MIX-Online.png" alt="" width="605" height="300" /></a></p>
<h2>11. Kha Hoang</h2>
<p><a href="http://khahoang.com/"><img class="alignnone size-full wp-image-378" title="Kha Hoang  ›  Portfolio" src="http://stylizedweb.com/wp-content/uploads/2010/05/Kha-Hoang- › -Portfolio.png" alt="" width="605" height="300" /></a></p>
<h2>12. Sort</h2>
<p><a href="http://www.sortdesign.co.uk/"><img class="alignnone size-full wp-image-379" title="Sort Design" src="http://stylizedweb.com/wp-content/uploads/2010/05/Sort-Design.png" alt="" width="605" height="300" /></a></p>
<h2>13. Jax Vineyards</h2>
<p><a href="http://jaxvineyards.com/#/chardonnay"><img class="alignnone size-full wp-image-380" title="Jax Vineyards" src="http://stylizedweb.com/wp-content/uploads/2010/05/Jax-Vineyards.png" alt="" width="605" height="300" /></a></p>
<h2>14. Things</h2>
<p><a href="http://things.be/"><img class="alignnone size-full wp-image-381" title="Welcome - Things - Web design and django development - Brussels, Belgium" src="http://stylizedweb.com/wp-content/uploads/2010/05/Welcome-Things-Web-design-and-django-development-Brussels-Belgium.png" alt="" width="605" height="300" /></a></p>
<h2>15. iLTD</h2>
<p><a href="http://www.iliketodesign.ca/"><img class="alignnone size-full wp-image-382" title="iLTD. I Like To Design- The Online Blog and Portfolio of Cornelius Quiring" src="http://stylizedweb.com/wp-content/uploads/2010/05/iLTD.-I-Like-To-Design-The-Online-Blog-and-Portfolio-of-Cornelius-Quiring.png" alt="" width="605" height="300" /></a></p>
<h2>16. Extra Polish</h2>
<p><a href="http://www.fajnechlopaki.com/"><img class="alignnone size-full wp-image-383" title="Fajne Chłopaki -- Portfolio -- Studio graficzne" src="http://stylizedweb.com/wp-content/uploads/2010/05/Fajne-Chłopaki-Portfolio-Studio-graficzne.png" alt="" width="605" height="300" /></a></p>
<h2>17. Simon J. Hunter</h2>
<p><a href="http://sjhunter.net/"><img class="alignnone size-full wp-image-384" title="Simon J Hunter - Film &amp; TV Composer" src="http://stylizedweb.com/wp-content/uploads/2010/05/Simon-J-Hunter-Film-TV-Composer.png" alt="" width="605" height="300" /></a></p>
<h2>18. Frank Chimero </h2>
<p><a href="http://www.profile.frankchimero.com/"><img class="alignnone size-full wp-image-385" title="Profile- Frank Chimero" src="http://stylizedweb.com/wp-content/uploads/2010/05/Profile-Frank-Chimero.png" alt="" width="605" height="300" /></a></p>
<h2>19. Indextwo</h2>
<p><a href="http://www.indextwo.com/"><img class="alignnone size-full wp-image-386" title="Indextwo  About" src="http://stylizedweb.com/wp-content/uploads/2010/05/Indextwo-About.png" alt="" width="605" height="300" /></a></p>
<h2>20.  Lecia</h2>
<p><a href="http://us.leica-camera.com/home/"><img class="alignnone size-full wp-image-387" title="Leica Camera AG - Home" src="http://stylizedweb.com/wp-content/uploads/2010/05/Leica-Camera-AG-Home.png" alt="" width="605" height="300" /></a></p>
<h2>21. IO</h2>
<p><a href="http://www.ioadv.it/"><img class="alignnone size-full wp-image-388" title="io  agenzia di comunicazione e web" src="http://stylizedweb.com/wp-content/uploads/2010/05/io-agenzia-di-comunicazione-e-web.png" alt="" width="605" height="300" /></a></p>
<h2>22. Alex Cornell</h2>
<p><a href="http://alexcornell.com/"><img class="alignnone size-full wp-image-389" title="Alex Cornell" src="http://stylizedweb.com/wp-content/uploads/2010/05/Alex-Cornell.png" alt="" width="605" height="300" /></a></p>
<h2>23. Royale</h2>
<p><a href="http://royale.no/"><img class="alignnone size-full wp-image-390" title="Royale - Showcase of Ole Kristian Masdal Svendsen" src="http://stylizedweb.com/wp-content/uploads/2010/05/Royale-Showcase-of-Ole-Kristian-Masdal-Svendsen.png" alt="" width="605" height="300" /></a></p>
<h2>24. Reknit</h2>
<p><a href="http://www.rekn.it/"><img class="alignnone size-full wp-image-391" title="Reknit - May-Auctions" src="http://stylizedweb.com/wp-content/uploads/2010/05/Reknit-May-Auctions.png" alt="" width="605" height="300" /></a></p>
<h2>25. Concentric Studio</h2>
<p><a href="http://concentric-studio.com/"><img class="alignnone size-full wp-image-392" title="Concentric Studio™" src="http://stylizedweb.com/wp-content/uploads/2010/05/Concentric-Studio™.png" alt="" width="605" height="300" /></a></p>
<h2>26. Mercy</h2>
<p><a href="http://www.mercyonline.co.uk/"><img class="alignnone size-full wp-image-393" title="Mercy - Design Agency, Literature &amp; Arts Collective - London - Liverpool - UK" src="http://stylizedweb.com/wp-content/uploads/2010/05/Mercy-Design-Agency-Literature-Arts-Collective-London-Liverpool-UK.png" alt="" width="605" height="300" /></a></p>
<h2>27. Behind My Scenes</h2>
<p><a href="http://behindmyscenes.com/"><img class="alignnone size-full wp-image-394" title="Atle Mo  Behind my scenes" src="http://stylizedweb.com/wp-content/uploads/2010/05/Atle-Mo-Behind-my-scenes.png" alt="" width="605" height="300" /></a></p>
<h2>28. Oliver James Gosling</h2>
<p><a href="http://www.goslingo.com/"><img class="alignnone size-full wp-image-395" title="Oliver James Gosling - Freelance Web Developer" src="http://stylizedweb.com/wp-content/uploads/2010/05/Oliver-James-Gosling-Freelance-Web-Developer.png" alt="" width="605" height="300" /></a></p>
<h2>29. The Import</h2>
<p><a href="http://www.theimport.co.uk/"><img class="alignnone size-full wp-image-396" title="The Import by We Heart, formerly CSS Import" src="http://stylizedweb.com/wp-content/uploads/2010/05/The-Import-by-We-Heart-formerly-CSS-Import.png" alt="" width="605" height="300" /></a></p>
<h2>30. Digital Podge</h2>
<p><a href="http://www.digitalpodge.co.uk/2009/"><img class="alignnone size-full wp-image-397" title="Digital Podge 2009 - Measurable Fun  17th December 2009" src="http://stylizedweb.com/wp-content/uploads/2010/05/Digital-Podge-2009-Measurable-Fun-17th-December-2009.png" alt="" width="605" height="300" /></a></p>
<h2>31. Rebecca Berry</h2>
<p><a href="http://www.rebeccabarry.com.au"><img class="alignnone size-full wp-image-398" title="Rebecca Barry  Director, Writer &amp; Producer  Sydney, Australia" src="http://stylizedweb.com/wp-content/uploads/2010/05/Rebecca-Barry-Director-Writer-Producer-Sydney-Australia.png" alt="" width="605" height="300" /></a></p>
<h2>32. Jay Hollywood</h2>
<p><a href="http://www.jayhollywood.com.au/"><img class="alignnone size-full wp-image-399" title="Jay Hollywood - Freelance website designer, web design and branding - Perth, Western Australia" src="http://stylizedweb.com/wp-content/uploads/2010/05/Jay-Hollywood-Freelance-website-designer-web-design-and-branding-Perth-Western-Australia.png" alt="" width="605" height="300" /></a></p>
<h2>33. Digital Mash</h2>
<p><a href="http://digitalmash.com/"><img class="alignnone size-full wp-image-400" title="Digitalmash- A mash of work from Australian designer, Rob Morris" src="http://stylizedweb.com/wp-content/uploads/2010/05/Digitalmash-A-mash-of-work-from-Australian-designer-Rob-Morris.png" alt="" width="605" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://stylizedweb.com/2010/05/19/circle-web-design-trend/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		<feedburner:origLink>http://stylizedweb.com/2010/05/19/circle-web-design-trend/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</feedburner:origLink></item>
		<item>
		<title>Digging Into Wordpress 2.0 – Reviewed</title>
		<link>http://feedproxy.google.com/~r/stylizedweb/~3/kZdwTYVjDpU/</link>
		<comments>http://stylizedweb.com/2010/05/13/digging-into-wordpress-2-0-reviewed/#comments</comments>
		<pubDate>Thu, 13 May 2010 15:13:18 +0000</pubDate>
		<dc:creator>3pointross</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[digging]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://stylizedweb.com/?p=358</guid>
		<description><![CDATA[Readers of this blog will not be surprised that I am a fan of Wordpress as both a blogging platform and a content management system. So much a fan that it is one of the only software packages we use at my web design firm. The beauty of Wordpress really lies in the fact that [...]]]></description>
			<content:encoded><![CDATA[<p>Readers of this blog will not be surprised that I am a fan of Wordpress as both a blogging platform and a content management system. So much a fan that it is one of the only software packages we use at my web design firm. The beauty of Wordpress really lies in the fact that out of the box it is very simple yet it has the power to do just about anything you would like it to.</p>
<p>One of my main issues with most content management systems is that they are simply too large, bloated and complicated for 90% of the sites out there. They focus too much on functionality and not how it is executed. The result is bloated code, poor administrative interfaces and complicated configuration. With Wordpress this is not the case, out of the box you can build and manage a simple site and when needed you can extend it to do anything from run a social network, do e-commerce or work as a full functioning web application.</p>
<p>In order to fully harness Wordpress for my projects (and my company projects) it is critical that I have a clear and efficient understanding of what Wordpress can do. From there it is also important that my employees have the capability to develop with the Wordpress platform to make this happen. Now I could come up with a training program or try one of the off the shelf books (which I have read through and were not impressed), but I have found <a href="http://redirect.tracking202.com/dl/81459589?t202kw=" target="_blank">Digging Into Wordpress</a> to be an excellent solution.</p>
<h2><a rel="lightbox" href="http://stylizedweb.com/wp-content/uploads/2010/05/DIWP-1.png"><img class="alignright size-medium wp-image-361" title="DIWP-1" src="http://stylizedweb.com/wp-content/uploads/2010/05/DIWP-1-300x209.png" alt="" width="300" height="209" /></a>What You Get</h2>
<p><a href="http://redirect.tracking202.com/dl/81459589?t202kw=" target="_blank">Digging into Wordpress is available as a PDF download or as a print version</a>. If you are like me and have no problem reading through a book on screen, the PDF version is an easy reference guide and has the added feature of searching and chapter click through. However I am sure there are plenty of people who would rather have a hard copy to reference while they are working away on their computer.</p>
<p><strong>The book is a whopping 434 pages of content and on a broad level covers critical Wordpress concepts such as:</strong></p>
<ul>
<li>How to set things up</li>
<li>Building themes</li>
<li>Keeping sites secure and optimized</li>
<li>Making the most of Wordpress</li>
</ul>
<p><strong><a rel="lightbox" href="http://stylizedweb.com/wp-content/uploads/2010/05/DIP-2.png"><img class="alignright size-medium wp-image-362" title="DIP-2" src="http://stylizedweb.com/wp-content/uploads/2010/05/DIP-2-300x235.png" alt="" width="300" height="235" /></a>More specifically the book has chapters on:</strong></p>
<ul>
<li>Wordpress basics (how to install, optimize and maintain it)</li>
<li>Setup and optimization (permalinks, categories and tags, publishing, users, themes and plugins)</li>
<li>Building Wordpress themes (Theme files, page views, header, the loop, comments, sidebar, foots, functions &amp; search)</li>
<li>Advanced theme design (customizing the loop, sidebars, footers, side content, child themes, styling, widgets)</li>
<li>Functionality (plugins, custom functions)</li>
<li>Wordpress as a CMS (custom content, page templates, dynamic menus, roles &amp; permissions, great Plug-ins)</li>
<li>Working with RSS Feeds</li>
<li>Comments and customizations</li>
<li>Search Engine Optimization (duplicate content, permalinks, appeasing google, tracking)</li>
<li>Maintenance (security, comment spam, upgrades, backups)</li>
<li>Bonus Tricks (option panels, free themes)</li>
<li>Wordpress Updates</li>
</ul>
<p>As you can see the book is packed with just about anything you could possibly want to know about Wordpress. Well Beyond what I had the time to read and learn about my first time through, but I am sure there will be instances where I will need to know how to really customize my RSS output and this book will be the perfect reference manual to do so.</p>
<h2><a rel="lightbox" href="http://stylizedweb.com/wp-content/uploads/2010/05/DIWP-2.png"><img class="alignright size-medium wp-image-363" title="DIWP-2" src="http://stylizedweb.com/wp-content/uploads/2010/05/DIWP-2-300x232.png" alt="" width="300" height="232" /></a>The Excellent Points</h2>
<p>There are several incredible parts of this book regardless of your skill level. Having used Wordpress for about four years now I have gotten to a fairly high level of fluency, however I still found lots of great information about how to do things that I either didn't know how to do or wasn't even aware was possible. However there is plenty of great content for beginners as well, I was able to hand the book over to one of my new interns and by the end of a few days she had developed her first Wordpress theme. Considering it was the first "non-static" site she had ever worked with this was extremely impressive.</p>
<p>Additionally the book does a great job of not only teaching the technical elements of Wordpress, but also the practical elements as well. You will learn how to maintain, protect and optimize your blog for faster page loads, higher rankings and more stability. All of these are critical elements to the success of a site after it has been developed and launched (the longer portion of the site life cycle).</p>
<h2>What Could Be Improved</h2>
<p>The book is a huge wealth of information, that is for sure. However I wonder if this made it difficult to organize. There were more than a few points where the book seemed to jump around a bit in terms of the content and how it all fit together. The first chapter for example, seems to cover a bit of a variety of different topics that range from beginner to advance despite it's label of "Wordpress Basics." That being said I would rather have more information and have to hunt a little bit for it than getting a book that left me searching the internet for what I need to know.</p>
<h2>Overall...</h2>
<p><a href="http://redirect.tracking202.com/dl/81459589?t202kw=">If you do <em><strong>ANYTHING</strong></em> in Wordpress you really should purchase this book.</a> You will not find a more comprehensive reference guide or set of tutorials anywhere. The small cost of $27 will be outweighed by the time saved and the increased capabilities you will gain by reading through and understanding the book.</p>
]]></content:encoded>
			<wfw:commentRss>http://stylizedweb.com/2010/05/13/digging-into-wordpress-2-0-reviewed/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		<feedburner:origLink>http://stylizedweb.com/2010/05/13/digging-into-wordpress-2-0-reviewed/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</feedburner:origLink></item>
		<item>
		<title>Web Design Conference – Voices That Matter</title>
		<link>http://feedproxy.google.com/~r/stylizedweb/~3/8vq7b9v6aYw/</link>
		<comments>http://stylizedweb.com/2010/04/22/web-design-conference-voices-that-matter/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 19:39:46 +0000</pubDate>
		<dc:creator>3pointross</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[san francisco]]></category>
		<category><![CDATA[voices that matter]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://stylizedweb.com/?p=355</guid>
		<description><![CDATA[If you missed out on South by South West this year (like me) and are looking for a good conference to go to you may want to consider Voices That Matter: Web Design Conference. There are some great speakers lined up such as Jesse James Garrett and Steve Krug.
The Voices That Matter team contacted me [...]]]></description>
			<content:encoded><![CDATA[<p>If you missed out on South by South West this year (like me) and are looking for a good conference to go to you may want to consider <a href="http://www.voicesthatmatter.com/webdesign2010/" target="_blank">Voices That Matter: Web Design Conference</a>. There are some great speakers lined up such as Jesse James Garrett and Steve Krug.</p>
<p>The Voices That Matter team contacted me about going and also wanted to provide an offer to readers of this blog for early bird registration. See the details below:</p>
<blockquote><p>New Riders’ Voices That Matter: Web Design Conference, now in its fourth consecutive year, will take place June 28-29 in San Francisco and the timing couldn’t be better! Web design is undergoing an historic transformation: while the basics of HTML, CSS, and JavaScript haven't changed, the new and evolving functionality in the HTML5 and CSS3 specs, the number of new ways in which people access the Web, and the rise of social media mean that Web designers need to know more than ever.</p>
<p>Don’t miss this opportunity to meet face-to-face with industry greats and discuss Web design’s most critical topics! We’ll open with a keynote address from Jesse James Garrett, author of The Elements of User Experience: User-Centered Design for the Web and close with a keynote address delivered by Steve Krug, author of the well known book Don't Make Me Think and the brand new book Rocket Surgery Made Easy: The Do-It-Yourself Guide to Finding and Fixing Usability Problems. From start to finish this conference will blow you away.</p>
<p><strong>SPECIAL SAVINGS! As someone that reads this blog, you can save $150 off the conference fee by providing priority code WBNBLGA when registering. <a href="http://www.voicesthatmatter.com/webdesign2010/register.aspx">Register before May 14th and save $250</a> as this $100 discount is combined with the early bird pricing!</strong></p></blockquote>
<p><strong><span style="font-weight: normal;">If you plan on going let me know so that I can plan to say hello and thank you for being a reader of this blog!</span></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://stylizedweb.com/2010/04/22/web-design-conference-voices-that-matter/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://stylizedweb.com/2010/04/22/web-design-conference-voices-that-matter/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</feedburner:origLink></item>
		<item>
		<title>The Ultimate Wordpress Security Guide</title>
		<link>http://feedproxy.google.com/~r/stylizedweb/~3/zsvNm7n3b00/</link>
		<comments>http://stylizedweb.com/2010/04/19/the-ultimate-wordpress-security-guide/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 15:18:02 +0000</pubDate>
		<dc:creator>3pointross</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://stylizedweb.com/?p=347</guid>
		<description><![CDATA[There are plenty of good posts and resources online that discuss how to secure Wordpress. However they tend to all mention different things / techniques, so if you really want to lock your installation down you have to sort through 10 - 15 posts to cover all of your bases. There really doesn't seem to [...]]]></description>
			<content:encoded><![CDATA[<p>There are plenty of good posts and resources online that discuss how to secure Wordpress. However they tend to all mention different things / techniques, so if you really want to lock your installation down you have to sort through 10 - 15 posts to cover all of your bases. There really doesn't seem to be a all inclusive list.</p>
<p>I have had to go the extra mile on a few projects in regards to security and Wordpress, and after a clients website got hacked it made sense to compile all the methods of securing Wordpress into one single document. Since Wordpress is open source, I figure I might as well make the document open source as well.</p>
<p><img class="alignleft size-full wp-image-349" title="37-Wordpress-Security-1" src="http://stylizedweb.com/wp-content/uploads/2010/04/37-Wordpress-Security-1.gif" alt="" width="100" height="129" /><a href="http://stylizedweb.com/wp-content/uploads/2010/04/37-Wordpress-Security.pdf">You can download the PDF version of the document here</a>, or simply read through it below.</p>
<h2 class="clear">Server Level Security</h2>
<h3>1. Disallow bots from scanning the important Wordpress directories</h3>
<p>By using the <code>Robots.txt</code> file it is always a good idea to block the <code>wp-content</code>, <code>wp-admin</code>, etc... directories. This can be done by adding the following line:</p>
<pre><code>Disallow: /wp-*</code></pre>
<h3>2. Turn off directory browsing.</h3>
<p>Many servers by default allow you to browse the listing of files with in a given directory. You may have come across this before when a page is missing or there is no index to a directory. The server outputs a listing of the files in the directory instead. This is particularly important in regards to plug-ins. If someone can see which plugins you have on your site they might be able to see which ones are venerable.</p>
<p>This can be done through your <code>.htaccess</code> be using the code below:</p>
<pre><code>Options All -Indexes</code></pre>
<h3>3. Protect your <code>wp-admin</code> folder</h3>
<p>The wp-admin folder is a critical security point with in Wordpress. Denying access to this folder (as well as the <code>wp-config.php</code> file) goes a long way to ensuring that your Wordpress site is secure.</p>
<p>This can be done in several ways and you may want to do all of them.</p>
<h4>3.1 Limit access to your <code>wp-admin</code> folder by IP Address</h4>
<p>If you know that you are on an IP Address that doesn’t change you can prevent any intruders by blocking every IP but your own. The drawback here is that if you are traveling, are off site or trying to update the site from a location that is not your typical one you will be denied access as well.</p>
<p>This can be done through your <code>.htaccess</code> by using the example code below:</p>
<pre><code>
&lt;Limit GET POST PUT&gt;
order deny,allow
deny from all
allow from 12.345.67.890
allow from 890.67.345.12
&lt;/Limit&gt;
</code></pre>
<h4>3.2 Limit access to your <code>wp-admin</code> folder through password protection</h4>
<p>While not as secure as the IP Address method, it can be extremely effective to simply password protect your folder on the server level. This can also build upon the security enhancement of 3.1. For example if someone is able to spoof your IP address they still would need to hack your password to break in.</p>
<p>The easiest way to setup password protection is through the <a href="http://www.askapache.com/wordpress/htaccess-password-protect.html" target="_blank">Wordpress htaccess Password Protect Plugin</a>.</p>
<h4>3.2 Limit access to your <code>wp-admin</code> folder by hiding it</h4>
<p>There is no reason that your wp-admin folder has to be called wp-admin. Hackers look for this administration folder in this location. One easy way to eliminate hacking of your site and administration area is simply rename the folder to something else. Simple enough?</p>
<h3>4. Protect your <code>wp-config.php</code> file</h3>
<p>The password to your database is stored in plain, readable text in your configuration file (<code>wp-config.php</code>). Access to your database gives hackers control over your complete site, so to say you need to protect it is an understatement. The first and most obvious step is to ensure the permissions are set correctly.</p>
<p>Some servers set the wrong permissions by default which allows anyone who wants to the ability to read the contents of that file.</p>
<p>The permission should be set using SSH or through an FTP client to 640</p>
<pre><code>chmod 640 wp-config.php</code></pre>
<p>Additionally you can actually move the <code>wp-config.php</code> out of the main Wordpress directory and still have everything function properly. This way hackers don’t know where to look for the file. For example if your <code>wp-config.php</code> is located in <code>/public_html/blog/wp-config.php</code> you could move it to <code>/public_html</code>.</p>
<h3>5. Install the 3G Blacklist</h3>
<p>A lot of Wordpress installations are hosted on an Apache server. If your site is on an Apache server then you can improve the security (not just Wordpress) by installing the 3G Blacklist. The 3G Blacklist is:</p>
<blockquote><p>“a concise, lightweight security strategy for Apache-powered websites...the 3G Blacklist serves as an extremely effective security strategy for preventing a vast majority of common exploits. The list consists of four distinct parts, providing multiple layers of protection while synergizing into a comprehensive defense mechanism.”</p></blockquote>
<p><a href="http://perishablepress.com/press/2008/05/13/perishable-press-3g-blacklist/" target="_blank">Find instructions and usage information on the 3G Blacklist here.</a></p>
<h2>Wordpress Level Security</h2>
<h3>1. Remove the Wordpress version number from the <code>META</code> tags</h3>
<p>Some hackers target specific versions of Wordpress because of known open venerability's.  An easy way to prevent your site from coming up as a target is to simply remove any indicators of the software version.</p>
<p><strong>In older version of wordpress your theme file would hav the following code in the header.php that generates a simple tag that outputs the current version:</strong></p>
<pre><code>&lt;meta content="WordPress &amp;lt;?php bloginfo(’version’); ? /&amp;gt;" name="generator" /&gt;</code></pre>
<p>You can prevent this from being an issue by simply deleting that line of code.</p>
<p><strong>Newer versions of Wordpress output the version automatically through the <code>wp_head();</code> function. You can remove these by <a href="http://wordpress.org/extend/plugins/secure-wordpress/" target="_blank">installing the Secure Wordpress plugin</a>.</strong><br />
<strong><br />
</strong></p>
<h3>2. Disable the “Admin” account</h3>
<p>By default Wordpress creates an “admin” account every time you install it. While the passwords are generated randomly it is never a good idea to let people know the login of your most powerful account. Because all Wordpress installations have the same username for the master account you are doing just that.</p>
<p>Simply changing the username from admin to something less obvious will improve the security of your site.</p>
<p>This will have to be done through the database as Wordpress won’t let you change or remove the account through the administration interface. The account is located in the <code>wp_users</code> table, and you can simply change the account name, display name, etc... to that of your choosing.</p>
<h3>3. Change the Wordpress table prefix</h3>
<p>All installations of Wordpress use the same name for all of the tables on the database. The problem with this is that if a hacker is able to use a SQL injection exploit they know exactly which tables to change data on. If you use an alternative prefix when you install the software this is prevented.</p>
<p>Already have a Wordpress installation? The <a href="http://wordpress.org/extend/plugins/wp-security-scan/" target="_blank">WP Security Scan plugin</a> can help you switch.</p>
<h3>4. Use secure connections when connecting to the ADMIN pages</h3>
<p>To prevent data being intercepted between your computer and the server hosting your website you can actually force a secure connection to all of the administration panels. This will require that you purchase and implement a SSL certificate from your host first, but once you have done this you can add the following code to your <code>wp-config.php</code> file to activate secure administration:</p>
<pre><code>define('FORCE_SSL_ADMIN', true);
</code></pre>
<h3>5. Use Security Keys</h3>
<p>Wordpress doesn’t require that you take advantage of their “security key” tool that better encrypts cookies, there by better protecting your passwords. Using security keys is a simple process where you generate a key and make some simple modifications to the <code>wp-config.php</code> file.</p>
<p><a href="http://api.wordpress.org/secret-key/1.1/" target="_blank">You can generate Wordpress security keys on this website</a>.</p>
<h2>Wordpress Security Plugins</h2>
<h3>1. Login Lockdown Plugin</h3>
<p>This simple plugin will record the IP address of every failed login attempt. If there are too many failed attempts from one IP address the login function will be disabled for that IP range. This prevents brute force password break-ins.</p>
<p><a href="http://www.bad-neighborhood.com/login-lockdown.html" target="_blank">You can download the plugin here</a>.</p>
<p><strong>2. Invisible Defender Plugin</strong></p>
<p>This plugin protects registration, login and comment forms from spambots by adding two extra fields hidden by CSS. The idea behind Invisible Defender is simple: SPAMBOTs either fill every form field they find (generic spambots) or fill WordPress-specific fields only (spambots which will recognise WP or are targeting WP only).</p>
<p><a href="http://wordpress.org/extend/plugins/invisible-defender/" target="_blank">You can download the plugin here</a>.</p>
<h3>3. Maximum Security</h3>
<p>You can perform and identify a lot of the problems outlined in this document automatically through this full featured and robust plugin. It can identify permission issues and has an intrusion protection system.</p>
<p><a href="https://wpsecurity.net/" target="_blank">You can download the plugin here</a>.</p>
<h3>4. Secure Wordpress</h3>
<p>Little help to secure your WordPress installation: Remove Error information on login page; adds index.html to plugin directory; removes the wp-version, except in admin area.</p>
<p><a href="http://wordpress.org/extend/plugins/secure-wordpress/">You can download the plugin here</a>.</p>
<p><strong>5. Secure Admin</strong></p>
<p>Secures Login and Admin pages using Private or Shared SSL.</p>
<p><a href="http://wordpress.org/extend/plugins/secure-admin/">You can download the plugin here</a>.</p>
<h2>Security Best Practices</h2>
<p>There are plenty of good security practices that you should follow that are not specific to Wordpress.</p>
<h3>1. Pick your passwords wisely</h3>
<p>The first step to being secure is to ensure your passwords are well formed. A strong password contains upper and lowercase letters, numbers, punctuation marks and are not a common dictionary word. This should be tested on every aspect of your website from your SFTP / FTP account, database password and user accounts.</p>
<p><a href="http://www.passwordmeter.com/" target="_blank">You can test your passwords using this handy website</a>.</p>
<h3>2. Only use secure connections</h3>
<p>Most website owners and developers use FTP connections to access the files on their server. This is all good and fine except that the transmission is not secure and is open to security holes. Instead setup an SFTP account which will encrypt your connection and prevent stolen information.</p>
<h3>3. Keep your software up-to-date</h3>
<p>Any software should be updated as frequently as possible. Updates often fix security holes among other things (performance enhancements, new functionality, etc...) This certainly is the case with Wordpress. Now that the system has automatic upgrades there is no excuse to have out of date software.</p>
<p>This is not limited to the Wordpress core software either, you should also upgrade your plugins as often as possible as well.</p>
<h3>4. Backup often</h3>
<p>While it is not going to directly improve the security of your site, the only thing worse than getting your site hacked is getting it hacked with no way of restoring it. You should not only backup the actual files of the site but the database as well.</p>
<p>With the WP-DB-Backup plugin you can automate this process and even have it e-mail a copy of the backup to you on a regular schedule.</p>
<p><a href="http://wordpress.org/extend/plugins/wp-db-backup/" target="_blank">You can download the plugin here</a>.</p>
<p>Have a hard core an intensive Wordpress site? You can even backup the important parts of your Wordpress installation to Amazon S3 servers through the WP S3 Backups.</p>
<p><a href="http://wordpress.org/extend/plugins/wp-s3-backups/" target="_blank">You can download the plugin here</a>.</p>
<h3>5. Secure your MySQL Database</h3>
<p>Not specific to Wordpress but you can make a lot of strides to improving the security of your MySql database server. I won’t go into the specific details in this document but you can <a href="http://www.symantec.com/connect/articles/secure-mysql-database-design" target="_blank">get more than enough information from this detailed website</a>.</p>
<h2>Anything Else?</h2>
<p>Did I miss something? Have any better ways to perform any of the security items I mentioned? Feel free to leave them in the comments and I will update the post!</p>
]]></content:encoded>
			<wfw:commentRss>http://stylizedweb.com/2010/04/19/the-ultimate-wordpress-security-guide/feed/</wfw:commentRss>
		<slash:comments>75</slash:comments>
		<feedburner:origLink>http://stylizedweb.com/2010/04/19/the-ultimate-wordpress-security-guide/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</feedburner:origLink></item>
		<item>
		<title>Thesis 1.7 Wordpress framework / theme released</title>
		<link>http://feedproxy.google.com/~r/stylizedweb/~3/fAUj8u8Iub8/</link>
		<comments>http://stylizedweb.com/2010/03/31/thesis-1-7-wordpress-framework-theme-released/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 19:32:30 +0000</pubDate>
		<dc:creator>3pointross</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[frameworks]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[thesis]]></category>

		<guid isPermaLink="false">http://stylizedweb.com/?p=342</guid>
		<description><![CDATA[For those of you who are fan's of the Thesis Wordpress framework, there is a new version that has been released. It has a whole range of new design, SEO and performance enhancements. I have used Thesis on quiet a few client sites to give them more control over their site content, design and search [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you who are fan's of the <a href="/goto/thesis">Thesis Wordpress framework</a>, there is a new version that has been released. It has a whole range of new design, SEO and performance enhancements. I have used Thesis on quiet a few client sites to give them more control over their site content, design and search optimization. This new version seems to improve on the mindset and approach that has made Thesis a great platform up to this point.</p>
<p>According to the release notes the new version has the following new features:</p>
<ul>
<li>Insane new SEO  controls and detail</li>
<li>Options Manager</li>
<li>Completely reorganized options pages</li>
<li>Increased efficiency from every angle</li>
<li>Include a slew of JavaScript libraries!</li>
<li>New home page controls</li>
<li>Flexible new comment system</li>
<li>Easy 301 redirects for affiliates!</li>
<li>New hooks</li>
<li>New headline filter</li>
<li>Beefed-up internationalization</li>
<li>Improved core element defaults</li>
<li>Dramatically improved code quality</li>
</ul>
<p>Quite a long feature list, I will be installing the new version on a few sites later today to check them out in more detail.</p>
<p><a href="/goto/thesis">If you are interested check out the Thesis site for more information.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stylizedweb.com/2010/03/31/thesis-1-7-wordpress-framework-theme-released/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://stylizedweb.com/2010/03/31/thesis-1-7-wordpress-framework-theme-released/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</feedburner:origLink></item>
		<item>
		<title>Golden Rectangle / Golden Section PSD Guide</title>
		<link>http://feedproxy.google.com/~r/stylizedweb/~3/YdYShzIBFtA/</link>
		<comments>http://stylizedweb.com/2010/03/10/golden-rectangle-golden-section-psd-guide/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 18:44:59 +0000</pubDate>
		<dc:creator>3pointross</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[golden]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[psd]]></category>
		<category><![CDATA[ratio]]></category>
		<category><![CDATA[selection]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://stylizedweb.com/?p=338</guid>
		<description><![CDATA[There is a lot of misinformation out there when it comes to the gold section. I hear everything from "essentially it is the rule of thirds" to people describing it in as a way to make two column layouts. Neither of these are completely accurate however. The golden section is a ratio that creates a [...]]]></description>
			<content:encoded><![CDATA[<p>There is a lot of misinformation out there when it comes to the gold section. I hear everything from "essentially it is the rule of thirds" to people describing it in as a way to make two column layouts. Neither of these are completely accurate however. The golden section is a ratio that creates a rectangle with sub-rectangles in the most visually appealing way. The ratio and golden section has been found in everything from the ratios and proportions of ancient artwork, modern and historic architecture and even can be seen in what we perceive as natural beauty in the human face and body.</p>
<p>To say that the golden rectangle is powerful is an understatement. Powerful and skilled designers can use this ratio to improve their designs dramatically, and what is amazing about it is that people won't be able to directly place their finger on how or why the design is so effective.</p>
<h2>The Golden Rectangle Explained</h2>
<p><img class="alignright" src="http://en.wikivisual.com/images/4/46/Golden_rectangle_detailed.png" alt="" width="285" height="267" />The golden rectangle is a rectangle with  its sides in the 'Golden Ratio' or 1 <strong>:</strong> 1.618. Where most people get this wrong with they might account for the ratio to divide a canvas horizontally (ie: into two columns) but they don't account for the fact that the ratio also specifies a height (vertical divisions). Failing to account for the vertical ratios will reduce the impact and effect of using this tool for visually pleasing designs.</p>
<h2>The Photoshop Guide</h2>
<p>To make it easier to use this principal we have created a simple tools that lays out a golden rectangle and it's divisions (on all four corners) that you can overlay onto any of your designs. While it is originally designed for a 960 pixel wide canvas, it was created using vector shapes so it can be easily re-sized to any dimension with out losing any quality.</p>
<p><a rel="lightbox" href="http://stylizedweb.com/wp-content/uploads/2010/03/goldensection-image.png"><img class="alignright size-medium wp-image-339" title="goldensection-image" src="http://stylizedweb.com/wp-content/uploads/2010/03/goldensection-image-300x187.png" alt="" width="300" height="187" /></a>It also is organized based on folders so you can hide / show any portion of it to best fit your design needs.</p>
<h2>Downloads and Suggestions</h2>
<p>I am open to all suggestions, thoughts or improvements. I am releasing this under the creative commons, so if you choose to post it somewhere or repurpose it please do the right thing and at least attribute me with a link (or two).</p>
<p><a href="http://stylizedweb.com/wp-content/uploads/2010/03/GoldenSectionGuide.psd_.zip">Download the golden selection PSD guide here and let us know what you think!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stylizedweb.com/2010/03/10/golden-rectangle-golden-section-psd-guide/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://stylizedweb.com/2010/03/10/golden-rectangle-golden-section-psd-guide/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</feedburner:origLink></item>
	</channel>
</rss>
