<?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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>WPCandy</title>
	
	<link>http://wpcandy.com</link>
	<description />
	<pubDate>Thu, 18 Jun 2009 13:30:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</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" href="http://feeds.feedburner.com/wpcandy" type="application/rss+xml" /><feedburner:emailServiceId>wpcandy</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Creating Widgets in WordPress 2.8 with the Widget API</title>
		<link>http://feedproxy.google.com/~r/wpcandy/~3/MO4Kd-x3ip4/creating-widgets-in-wordpress-28-with-the-widget-api.html</link>
		<comments>http://wpcandy.com/community/creating-widgets-in-wordpress-28-with-the-widget-api.html#comments</comments>
		<pubDate>Thu, 18 Jun 2009 13:29:10 +0000</pubDate>
		<dc:creator>Michael Castilla</dc:creator>
		
		<category><![CDATA[Community]]></category>

		<guid isPermaLink="false">http://wpcandy.com/?p=1879</guid>
		<description><![CDATA[Earlier this week, we published a post about working with the WordPress 2.8 Actions API, so here&#8217;s a post by WooCamp on working with the Widgets API. The post covers how to create a simple, multi-instance widget for adding posts to your sidebar.
]]></description>
			<content:encoded><![CDATA[<p>Earlier this week, we published a post about working with the <a href="http://wpcandy.com/articles/tutorials/a-guide-to-the-actions-api.html">WordPress 2.8 Actions API</a>, so here&#8217;s a post by WooCamp on working with the <a href="http://camp.woothemes.com/2009/06/creating-widgets-in-wordpress-2-8-with-the-widget-api/">Widgets API</a>. The post covers how to create a simple, multi-instance widget for adding posts to your sidebar.
<p><a href="http://wpseo.org/"><img src="http://wpcandy.com/wp-content/uploads/ads/wpSEO-468x60.png" alt="" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://wpcandy.com/community/creating-widgets-in-wordpress-28-with-the-widget-api.html/feed</wfw:commentRss>
		<feedburner:origLink>http://wpcandy.com/community/creating-widgets-in-wordpress-28-with-the-widget-api.html</feedburner:origLink></item>
		<item>
		<title>A Guide to the Actions API</title>
		<link>http://feedproxy.google.com/~r/wpcandy/~3/rn4CSdOu_6Q/a-guide-to-the-actions-api.html</link>
		<comments>http://wpcandy.com/articles/tutorials/a-guide-to-the-actions-api.html#comments</comments>
		<pubDate>Mon, 15 Jun 2009 11:00:49 +0000</pubDate>
		<dc:creator>Ptah Dunbar</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://wpcandy.com/?p=1861</guid>
		<description><![CDATA[WordPress theme frameworks have been all the rave nowadays, and rightly so. Everybody&#8217;s either using one or rolling their own flavor. Theme frameworks introduce several new concepts to theme authoring that till now, only plugin developers have been taking advantage of. In this article, I&#8217;m going to introduce you to the actions API, and break [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress theme frameworks have been all the rave nowadays, and rightly so. Everybody&#8217;s either using <a href="http://codex.wordpress.org/Theme_Frameworks">one</a> or rolling <a href="http://twitter.com/bgardner/status/2106266257">their own flavor</a>. Theme frameworks introduce several new concepts to theme authoring that till now, only plugin developers have been taking advantage of. In this article, I&#8217;m going to introduce you to the actions API, and break it down so you can understand how it all works.<span id="more-1861"></span>If you don&#8217;t already know about action hooks, they&#8217;re simple little functions that act as a placeholder to allow other functions to &#8220;hook&#8221; into that particular spot where the placeholder function was called at. Here&#8217;s an example to demonstrate that:</p>
<p><code>wp_head()</code> an action hook which is located in your theme&#8217;s header.php is a prime example of how action hooks work. <code>wp_head</code> is located in your theme&#8217;s header.php. Let&#8217;s take a peak at the source:</p>
<pre>/**
 * Fire the wp_head action
 *
 * @since 1.2.0
 * @uses do_action() Calls 'wp_head' hook.
 */
function wp_head() {
	do_action('wp_head');
}</pre>
<p>As you&#8217;ll notice, there&#8217;s nothing actually in <code>wp_head</code> that prints out any scripts or meta tags. <code>wp_head</code> simply calls a <code>do_action</code> function with the first parameter being <code>wp_head</code>. And that&#8217;s where the magic lies: <code>do_action();</code></p>
<p>In order to create an action hook, you simply need to create a placeholder function that calls <code>do_action();</code> with the first parameter being the name of the desired hook. Typically, you&#8217;d want the name to be exactly what the function name is, but it can be anything you&#8217;d like; as long as the name isn&#8217;t already in use.</p>
<p>Now here&#8217;s how the magic works: Once you call the <code>do_action('wp_head');</code> with the first parameter being the name of the desired hook, WordPress registers this call into the system. With the hook now registered into the system, we can now call the <code>add_action();</code> function allowing us to hook into wp_head.</p>
<p>Viewing the source of <code>default-filters.php</code> where WordPress hooks into the wp_head action hook reveals this:</p>
<pre>add_action('wp_head', 'wp_enqueue_scripts', 1);
add_action('wp_head', 'feed_links_extra', 3);
add_action('wp_head', 'rsd_link');
add_action('wp_head', 'wlwmanifest_link');
add_action('wp_head', 'index_rel_link');
add_action('wp_head', 'parent_post_rel_link', 10, 0);
add_action('wp_head', 'start_post_rel_link', 10, 0);
add_action('wp_head', 'adjacent_posts_rel_link', 10, 0);
add_action('wp_head', 'locale_stylesheet');
add_action('wp_head', 'noindex', 1);
add_action('wp_head', 'wp_print_styles', 8);
add_action('wp_head', 'wp_print_head_scripts', 9);
add_action('wp_head', 'wp_generator');</pre>
<p>More than a dozen functions get hooked into <code>wp_head</code> by default. You&#8217;ll notice that the first parameter is wp_head, with the second parameter being a PHP function. What <code>add_action</code> does, is register those PHP functions to the <code>wp_head</code> action hook. So whenever a <code>do_action('wp_head');</code> is called, WordPress checks to see if any PHP functions are registered to wp_head, and if so, execute them. And that&#8217;s how the WordPress actions API works.</p>
<p>Now why go through all that trouble when WordPress could have easily included all these functions into the actual theme itself? Well for one, the actions API makes your theme future proof. If you noticed right above the <code>wp_head</code> function, there was a comment stating that it was there <strong>since WordPress 1.2.0</strong>. That&#8217;s a pretty long time, and I can assure you that all those PHP functions registered to the wp_head hook weren&#8217;t there back in those days. Using the actions API, WordPress was able to use one placeholder function and hook in functionality later down the line when needed, like <code>feed_links_extra</code>, which was introduced in WordPress 2.8.</p>
<p>Using the actions API, you can also remove PHP functions registered to a particular hook using <code>remove_action();</code></p>
<pre>remove_action( 'wp_head', 'wp_generator' );</pre>
<p>The first parameter indicates which hook we&#8217;re targeting, and the second is the actual PHP function we&#8217;d like to remove. This function is useful if your using a theme framework and would like to remove some of their default behavior.</p>
<p>So to recap, the actions API allows you to create placeholder functions in your template files, allowing other functions to hook into that particular spot just by registering them using the add_action call. To read more on this topic, here are a few links that also explains the matter:</p>
<ul>
<li><a href="http://codex.wordpress.org/Plugin_API">WordPress Codex Plugin API</a></li>
<li><a href="http://www.nathanrice.net/blog/an-introduction-to-wordpress-action-hooks/">An introduction to Action hooks</a></li>
<li><a href="http://themeshaper.com/action-hooks-wordpress-child-themes/">Using Action Hooks in WordPress Child Themes</a></li>
<li><a href="http://www.raymondselda.com/understanding-action-hooks-in-wordpress/">Understanding Action Hooks In Wordpress</a></li>
</ul>
<p>The actions API is exactly how plugins are able to add features and functionality to WordPress as those little <code>do_action()</code> calls are made all throughout the WordPress core. Nowadays, themes are starting to get more advanced, so they started making use of the actions API to allow more flexibility and future proof. In the next article, I&#8217;ll demonstrate some creative uses for action hooks that you can use in your themes.
<p><a href="http://wpseo.org/"><img src="http://wpcandy.com/wp-content/uploads/ads/wpSEO-468x60.png" alt="" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://wpcandy.com/articles/tutorials/a-guide-to-the-actions-api.html/feed</wfw:commentRss>
		<feedburner:origLink>http://wpcandy.com/articles/tutorials/a-guide-to-the-actions-api.html</feedburner:origLink></item>
		<item>
		<title>10 Things You can Do with WordPress Besides Blogging</title>
		<link>http://feedproxy.google.com/~r/wpcandy/~3/tomNJBk1jlo/10-things-you-can-do-with-wordpress-besides-blogging.html</link>
		<comments>http://wpcandy.com/articles/10-things-you-can-do-with-wordpress-besides-blogging.html#comments</comments>
		<pubDate>Thu, 11 Jun 2009 11:00:14 +0000</pubDate>
		<dc:creator>Dan Philibin</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<category><![CDATA[Collections]]></category>

		<guid isPermaLink="false">http://wpcandy.com/?p=1857</guid>
		<description><![CDATA[Today you&#8217;re going to learn 10 things you can do with WordPress besides blogging, and whether you&#8217;re a WordPress newbie or longtime veteran - I guarantee that you will learn something after reading this post!
While WordPress is the world&#8217;s most popular self-hosted blogging solution, it&#8217;s also an open source CMS (Content Management Solution).  WordPress [...]]]></description>
			<content:encoded><![CDATA[<p>Today you&#8217;re going to learn 10 things you can do with WordPress besides blogging, and whether you&#8217;re a WordPress newbie or longtime veteran - I guarantee that you will learn something after reading this post!</p>
<p>While WordPress is the world&#8217;s most popular self-hosted blogging solution, it&#8217;s also an open source CMS (Content Management Solution).  WordPress is known for it&#8217;s blogging capabilities, but being a CMS as well it can do nearly anything that can be done within a web site.  Like a Forum, photo gallery, web directory, classifieds site, jobs board, news site, and more!  The advantage of doing these kinds of things within WordPress are that you can use it for either blogging or other features in as well!</p>
<p>Imagine being able to create a web directory, but use WP RSS, comments, pingback, plugin, and theme features?  Consider the ability to add a blog within a subsection of a web site without having to install a separate instance of WordPress there (because WP runs your entire site!).</p>
<p>There are probably hundreds (if not thousands) of things you can do with WordPress that aren&#8217;t blogging, but here are the top 10 ones I could think of to get the gears turning inside your head!</p>
<h3>1.  Create a Static Web Site</h3>
<p>I&#8217;m amazed sometimes when people don&#8217;t understand why I would want to create a static web site using WordPress.  There are 3 reasons this is the best solution I can think of:</p>
<ol>
<li>Sheer speed of Setup</l>
<li>Plugins and Themes</li>
<li>Future Growth</l>
</ol>
<p>I can setup an entire WordPress web site including database and initial setup options in about 10 minutes.  I can customize it very quickly with a theme.  I can add a very detailed contact form in about 5 minutes with a simple plugin.  With another plugin I can generate an XML sitemap to register with the 3 major search engines.  To do the same with static HTML (even Dreamweaver) would take soooo much longer, and would require extra scripts for a contact form and XML sitemap.</p>
<p>In addition if I created a 10 page static web site for a client using WordPress, I could create a login account for them and they could update their own web site (or add pages) in the future without needing my assistance.  You certainly can&#8217;t do that with a static web site!</p>
<p>If you create a static web site in the future using WordPress - here&#8217;s what you need to know:</p>
<p>As soon as you setup the site, <b>change permalink structure</b> by going to settings -> permalink in your dashboard.  Change the default date based permalink to /%postname%/ like this:</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/1-permalink.jpg" alt="" /></p>
<p>Next, since you&#8217;re building a static site you need to <b>assign a static home page</b>.  In settings -> reading in your dashboard assign a static page to display for the home page.  If you&#8217;re going to use the blogging function as well, you can assign it to a sub-page of your blog here as well:</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/1-front-page-static.jpg" alt="" /></p>
<p>Last, <b>turn off comments</b>.  You can turn these back on for any invidual pages (or posts if you use the blogging feature later).  Go to settings -> Discussion to turn comments off by default:</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/1-turn-off-comments.jpg" alt="" /></p>
<h3>2.  Build a Directory</h3>
<p>Web Directories are old school Internet!  A Directory is just a listing of sites, categorized in some way.  There are blog directories, business directories, web design directories - just about any niche you can think of is available.  To this day people still like directories because unlike a search engine (with millions of results), a good directory usually has great sites categorized by exactly the topic you&#8217;re looking for.  From a web site owner point of view, directories are usually viewed as a great way to build links, traffic, and authority for your site.</p>
<p>Most web directories are built on some custom PHP script developed specifically for that purpose.  Many directories I&#8217;ve seen had a script running the main web site, and then WordPress installed in a sub-folder running a blog.  You don&#8217;t need to do that, because you can actually easlily build your own directory right in WordPress.</p>
<p>You could of course just build a static site, and then create your own pages building a directory by hand.  But that would be a lot of work!  Why not use a free plugin to automate the process a bit.</p>
<p><b>Build a Link Directory</b>:</p>
<p>With Sean Blueston&#8217;s <a href="http://www.seanbluestone.com/wp-link-directory">WP Link Directory Plugin</a> you can build little directory of links with features like categories, search, reciprocal link detection, and the ability to allow paid premium links for a fee via paypal.</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/2-link-directory.jpg" alt="" /></p>
<p>Category pages contain pagerank info, link, and description:</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/2-link-directory-2.jpg" alt="" /></p>
<p>If you&#8217;re looking for something a bit more complex (that you could scale a bit), you need to check out <a href="http://WordPress.org/extend/plugins/odlinks/">Open Directory Links</a>.  You could definitely build your own open directory in WordPress with this:</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/2-open-directory.jpg" alt="" /></p>
<p>It&#8217;s got great style and layout and even RSS feeds available at the category levels.  It even has pagerank, refer to a friend, and add bookmark for each link:</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/2-open-directory2.jpg" alt="" /></p>
<p>Maybe you have more of a business site and a &#8220;business directory&#8221; for your niche would add great value for your client.  The difference between a business and link directory is that a business directory has name, link, and description attributes, but also the ability to support phone number and physical address as well:</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/2-business-directory.jpg" alt="" /></p>
<p>An advanced type of business directory might be one where you have an event that people have to register for, and you want to feature all the companies they work for online.  In that case the <a href="http://WordPress.org/extend/plugins/serad/">Social Events and Registration Directory Plugin</a> is exactly what you&#8217;re looking for.  People can register for an event, get a confirmation email, and it can even support social networking links, RSS feed links, and custom fields.</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/2-even-directory.jpg" alt="" /></p>
<h3>3.  Start a Classifieds Site</h3>
<p>Maybe you&#8217;d like to start a classifieds site for your group, organization, commnity, or business.  The coder of the open directory links plugin also makes a <a href="http://www.forgani.com/classified/">WP Classifieds WordPress Plugin</a>!</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/3-classifieds.jpg" alt="" /></p>
<p>It&#8217;s fully featured with post dates and view counts, and a fully featured submit form.  Users can add contact information an image, and they have an wysiwig editor for ads!  Users don&#8217;t have to create an account at all to submit ads, spam is controlled by captcha, and all category pages gave RSS links available for visitors.</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/3-classifieds-2.jpg" alt="" /></p>
<p>You can also add classified to a WordPress site with <a href="http://www.awpcp.com">Another WordPress Classifieds Plugin</a>.  It has nice layout, but support the ability to charge for listings.</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/3-another-classifieds.jpg" alt="" /></p>
<p>Browsing ads is a breeze with the very flexible layout which shows image, location, date posted, and views.  It&#8217;s very easy to change categories with the dropdown at the top of each page and the ability to change how many ads are listed per page:</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/3-another-classifieds-2.jpg" alt="" /></p>
<h3>4.  Create an Article Repository</h3>
<p>Maybe you&#8217;ve seen all those great article repositories online and thought it would be a great idea for a site of your own!  It&#8217;s a great way to get free content and traffic, and there are lots of scripts and programs out there that make setting one up a breeze!  With these plugins you can create your own article directory right in WordPress, and use all the normal WP features and functions available!</p>
<p>Using the <a href="http://WordPress.org/extend/plugins/article-directory-script/">Article Directory Plugin</a> you can easily setup an aricle repository in your WordPress powered site.  It allows you to accept articles submissions, and you can even get targeted content from the article dragon network (you have total control to accept or reject articles).  You can quickly build an article repository with this plugin.</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/4-article-directory.jpg" alt="" /></p>
<h3>5.  Make an Image Gallery</h3>
<p>Are you a photographer?  Are you the &#8220;tech guy&#8221; of your family tree?  Are you in charge of the web site for a local group or organization?  Having a baby or wedding?  I can&#8217;t believe the amount of times I got an email with a link to somebody&#8217;s Yahoo account for pictures to a corporate event or small business picnic.  I can&#8217;t count the number of photographers paying big amounts for online photo managers when there are free tools that would allow them to manage photos within their own web site.  There are incredible free plugins available for WordPress for showcasing and displaying images.</p>
<p><a href="http://alexrabe.boelinger.com/WordPress-plugins/nextgen-gallery/">NextGen Gallery</a> is the end-all be-all of plugins for photo management in WordPress.</p>
<p>Some of it&#8217;s abilites are random pics in the sidebar:</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/5-nextgen-sidebar.jpg" alt="" /></p>
<p>It has the ability to manage hundreds and thousands of pictures in sortable and categorizable galleries.  You can upload an entire zip file with pictures for inclusion, and it boasts a fully integrated flash slideshow.</p>
<p>You have complete control of home many galleries are displayed per page, you can have an index page listing all galleries, and you control how the galleries are shown, from the size of the images to the attributes beneath them (title, description, link, etc.).</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/5-nextgen-gallery.jpg" alt="" /></p>
<p>Another plugin worth mentioning is the <a href="http://WordPress.org/extend/plugins/page-flip-image-gallery/">Page Flip Image Gallery</a>.  If all you need to do for yourself or your client is display some sample work, show a portfolio, or just a simple image gallery - this is awesome!  It features full screen mode, and you can even use either JPG files or SWF flash files for gallery display!  It has batch upload, upload from URL, and zip file upload.  </p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/5-flipping-book.jpg" alt="" /></p>
<p>If you just need something basic and simple, then the <a href="http://brimosoft.nl/lazyest/">Lazyest Gallery Plugin</a> might be just the right one for you!  It offers automatic thumbnail and slide creation, and you can add comments on images and folders.  It has widgets for random pic and folder list, and you can add captions to all folders and images:</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/5-lazyest-gallery.jpg" alt="" /></p>
<p>If you&#8217;re really lazy, maybe all you want to do is just include your already existing photo galleries.  If that&#8217;s the case you might want to check out the plethora of <a href="http://WordPress.org/extend/plugins/search.php?q=picasa">Picasa Plugins</a> or <a href="http://WordPress.org/extend/plugins/search.php?q=flickr">Flickr Plugins</a> for WordPress.</p>
<h3>6.  Build a Review Site</h3>
<p>Another great idea is to build a &#8220;Review Site&#8221; in WordPress.  Let&#8217;s face it, the bulk of the blogs online are talking about something and giving an opinion (review).  There are many sites that review products and services, and there are countless ways of displaying them.  I had said that all 10 of my ideas in this article would be alternatives to blogging, but reviews can be done in pages, but also in running blog fashion with individual posts.  It just depends on how you decide to setup your site and which plugins you decide to utilize.</p>
<p>One way to do this is with the <a href="http://www.paradoxdgn.com/archives/622">Review Box</a> plugin.  By using a simple shortcode, you can add a &#8220;review box&#8221; to any page or post in which you can summarize up pros, cons, and then set a percentage rating:</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/6-review-box.jpg" alt="" /></p>
<p>There are also tons of premium themes and plugins for sale so you can create a &#8220;review site&#8221; in WordPress, but if you want to do it on the cheap, in my opinion the best plugin for that is <a href="http://www.gdstarrating.com/">GD Star Rating</a>.</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/6-gd-star-rating.jpg" alt="" /></p>
<p>If you want users to be able to rate or review pages or posts, one of the best plugins for that is <a href="http://WordPress.org/extend/plugins/wp-postratings/">WP Post Ratings</a> by Lester Chan.  It allows live ratings by users, and shows vote counts, and average rating:</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/6-lester-chan-ratings.jpg" alt="" /></p>
<h3>7.  Start a Discussion Forum</h3>
<p>A discussion forum is probably one of the greatest sources of content you could ever ask for!  It&#8217;s the epitomy of give and take online, usually people asking for help, and experts answering questions to give their expertise (and signature links) greater exposure.</p>
<p>There are countless hacks and plugins for integrating a &#8220;stand-alone&#8221; forum or bulletin boards into WordPress, but most people I&#8217;ve talked to don&#8217;t know that you can can actually create an entire forum inside WordPress itself!</p>
<p><a href="http://simplepressforum.com/download/">Simple:Press Forum</a> allows you to create an entire (and fully featured) threaded discussion forum within WordPress itself.  It has as many (if not more) features than most standalone forums I&#8217;ve used.  It has search, user registration, rss feeds, pagination, breadcrumbs, full stats, fine grained user control.  I&#8217;ve used this plugin several times, and I haven&#8217;t setup a standalone forum script since.</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/7-simple-forum.jpg" alt="" /></p>
<p>Another plugin available to create a fully-fledged forum in WordPress is <a href="http://www.fahlstad.se/wp-plugins/wp-forum/">WordPress Forum</a>.  It&#8217;s last update is Sept 2008, but it does appear to work with WordPress versions 2.02 or higher.</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/7-wp-forum.jpg" alt="" /></p>
<h3>8. Aggregation</h3>
<p>I hope I don&#8217;t catch a lot of flak for this one, because WordPress aggregation is probably the single most abused feature available.  It&#8217;s true, there are so many autoblogging plugins available it&#8217;s not funny - plugins that sploggers and spammers use to create sites with automatic content hoping to get indexed in search engines and make money for free on autopilot.</p>
<p>Aggregation can be used for good, and I don&#8217;t see that many web sites using it that way anymore.  RSS feeds are available for readers to subscribe to your content.  They are also available to keep track of the most recent updates, and you can aggregate the titles, links, and short excerpts of these updates on your web site for your readers (or even just for you).  In addition, there are RSS feed available for things besides blogs you may not have even thought about, AND there are some plugins that provide aggregation without RSS at all - maybe they use an API!</p>
<p>Let me give you some examples&#8230;.</p>
<p>Are you a twitter-holic?  You could use a plugin like <a href="http://WordPress.org/extend/plugins/tweet-blender/">Tweet Blender</a> to aggregate tweets from multiple users and / or specific hashtags:</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/8-twitter-blender.jpg" alt="" /></p>
<p>Next I&#8217;ll show you some great uses of RSS feeds (first) and then directly after I&#8217;ll show you how to &#8220;aggregate&#8221; these feeds into WordPress using a plugin&#8230;</p>
<p>Nearly every category on Craigslist has an RSS feed you can use.  Maybe you belong to an organization, group, or even a band that could benefit from including such a feed on your web site.  A real estate site could list the latest Craigslist rental listings, a musician site could list the latest gear for sale, etc.</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/8-craigslist.jpg" alt="" /></p>
<p>You could do the same thing with eBay.  Maybe your client has a business that lists things on eBay.  Do an advanced search and the bottom of that page has an RSS feed you can use.  Maybe you have a sewing club, you could use an RSS feed from product searches you wanted to track, like fabric sewing machines, patterns, etc.</p>
<p>On ANY eBay search page after the auctions:</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/8-ebay.jpg" alt="" /></p>
<p>scroll down to the bottom of the page and find the RSS link:</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/8-ebay-rss.jpg" alt="" /></p>
<p>You can search on nearly topic using <a href="http://blogsearch.google.com">google blog search</a>, and every search there has an RSS feed as well.  For example, my could could benefit from a page with an aggregation of the lastest blog postings about WordPress!</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/8-google-blog-search.jpg" alt="" /></p>
<p>Now that I&#8217;ve given you some RSS ideas, let&#8217;s take find out how to aggregate them into WordPress in a usable fashion.  I&#8217;ve used a few RSS feed aggregator plugins over the years, but the only that seems to still exist (and be updated frequently) is <a href="http://projects.radgeek.com/feedWordPress/">Feed WordPress</a>.  </p>
<p>By using Feed WordPress you can &#8220;aggregate&#8221; RSS feeds and publish them as WordPress posts.  You can see where this can be highly abused by unscrupulous bloggers who want to steal content from other places so they can profit at the original author&#8217;s expense.  There&#8217;s also no reason why you can&#8217;t use this for good, and aggregate simple titles and excerpts of posts that might be useful to your visitors.  In that regard it&#8217;s no different than what a search engine or news compilation site does anyway.  If you&#8217;re worried about duplicate content, you can go as far as to add an entry into your robots.txt file for noindex, nofollow, and you could even manually remove it from your XML sitemap.</p>
<p>Post can be configured any way you like, giving linkback attribution (or not), and web sites can even be listed as authors (contributors) in your blogroll.  You choose what tags and categories are assigned to them, and where the permalinks point.  For the most part, the posts you aggregate just look like regular blog posts.</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/8-feedwordpress.jpg" alt="" /></p>
<p>Maybe you want something a little bit simpler than turning RSS feeds into actual blog posts, and you just want to take that Craigslist RSS feed, or eBay RSS feed and list the contents onto a paged page.  WordPress already has the ability to parse RSS using the included magpie library.</p>
<p>By using this simple bit of code in any WordPress theme page:</p>
<pre><code>
&lt;?php include_once(ABSPATH . WPINC . '/rss.php');
wp_rss('http://example.com/rss/feed/goes/here', 20); ?&gt;
</code></pre>
<p>&#8230;you can parse any Worpress feed into a list of simple linked titles.  This is an incredibly simple way to add value to your blog, and you could add as many different feeds (or numbers of posts) per page as you want.  Just keep in mind that this is live (nothing is cached) the more feeds, or more posts per feed you add, the slower the page might be to generate.</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/8-ebay-rss-feed-example.jpg" alt="" /></p>
<h3>9. Membership site</h3>
<p>There are bunches of reasons you might want to have a closed &#8220;members only&#8221; web site.  Maybe you need something only your family can access, or a private site for your business or club.  Maybe you want to sell access to content, and you need part (or all) of your site walled off from public view.</p>
<p><a href="http://www.memberwing.com/">Memberwing</a> is a WordPress plugin that allows you to setup a membership site.  Like many plugins there&#8217;s a free and a &#8220;pro&#8221; version.  While the paid versions have all kinds of bells and whistles, the free version does exactly what most people would need, by using special tags it separates &#8220;teasers&#8221; from premium (paid) content.  In this example you can see how content is hidden and users have options to either login or &#8220;become a member&#8221;.</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/9-memberwing-example.jpg" alt="" /></p>
<p>If you like to keep things a bit simpler than that, you could use the <a href="http://smartlogix.co.in/wp-private/">WP Private</a> plugin to restrict access to certain content to registered users.  This plugin only hides the content, it doesn&#8217;t managage any payment options - so it would be better for a business to use for internal employees, private family content, etc.</p>
<p>Honorable mention goes to the <a href="http://WordPress.org/extend/plugins/private-rss/">Private RSS Plugin</a>, that would go well with a private membership site.</p>
<h3>10. eCommerce Site (online store)</h3>
<p>There are plugins that allow you to simple sell single items using PayPal, that&#8217;s exactly why the <a href="http://www.freerobby.com/artpal/">ArtPal Plugin</a> was developed (to sell art).  You create a post with a few custom fields and voila! you&#8217;re selling art!  You could of course use this plugin to sell just about anything using paypal, it doesn&#8217;t have to be art.</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/10-artpal.jpg" alt="" /></p>
<p>Maybe your blog accepts donations, or you have a very simple service that you charge for.  For that I suggest the <a href="http://www.tipsandtricks-hq.com/WordPress-easy-paypal-payment-or-donation-accept-plugin-120">Easy Paypal Payment or Donation Accept Plugin</a>:</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/10-paypal-payment-donation-example.jpg" alt="" /></p>
<p>If you want a solution even simpler than that - I offer you the <a href="http://pixline.net/2008/05/paypal-shortcodes-plugin/en/">Paypal Shortcodes Plugin</a>.  It doesn&#8217;t even have an admin interface - once enabled it allows you to add paypal buttons automatically in posts by using simple WP shortcodes:</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/10-paypal-shortcodes.jpg" alt="" /></p>
<p>You could use <a href="http://www.fatfreecart.com/wpplugin.html">Fat Free Cart</a> if you want a bone simple actual shopping cart - but you still want to sell on your blog and accept payments through paypal or google checkout.  This plugin is very similar to ArtPal.</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/10-fat-free-cart-example.jpg" alt="" /></p>
<p>There are several plugins that go well beyond the &#8220;basics&#8221; of selling something through paypal.  The <a href="http://WordPress.org/extend/plugins/eshop/">eShop Plugin</a> is packed with features such as several payment options, automatic email on successful purchase, multiple options for products, stats, and various shipping options.  It seems quite mature, and there are <a href="http://quirm.net/eshop-sites/">many example stores</a> to view.</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/10-eshop-example.jpg" alt="" /></p>
<p>By far the most popular though seems to be the <a href="http://www.instinct.co.nz/e-commerce/">eCommerce Plugin</a> for WordPress.  It boasts social networking hooks, payment options like paypal, google checkout, Authorize.net and more.  It has one page checkout, and lots of documentation and community support.  I have to admit, the example sites that use the eCommerce plugin look nearly identical to any of the big box retailers online storefronts:</p>
<p><img src="http://wpcandy.com/wp-content/uploads/10things/10-ecommerce-plugin-example.jpg" alt="" /></p>
<h3>Conclusion</h3>
<p>Well, your&#8217;re probably exhausted now - but I&#8217;ve definitely lived up to my word and showed you more ways to use WordPress (that aren&#8217;t blogging) than you can shake a stick at!  I hope this gives you some great ideas for both your own blogs and web sites, as well as your clients!</p>
<h4>About the Author</h4>
<p><i>JTPratt writes about being a <a href="http://www.jtpratt.com">WordPress Consultant</a>, and has recently launched his newest site - <a href="http://wp-dir.com">WordPress Directory</a>.</i>
<p><a href="http://wpseo.org/"><img src="http://wpcandy.com/wp-content/uploads/ads/wpSEO-468x60.png" alt="" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://wpcandy.com/articles/10-things-you-can-do-with-wordpress-besides-blogging.html/feed</wfw:commentRss>
		<feedburner:origLink>http://wpcandy.com/articles/10-things-you-can-do-with-wordpress-besides-blogging.html</feedburner:origLink></item>
		<item>
		<title>WordPress 2.8 Beta RC1</title>
		<link>http://feedproxy.google.com/~r/wpcandy/~3/W_Ws_PtWpW8/wordpress-28-beta-rc1.html</link>
		<comments>http://wpcandy.com/articles/wordpress-28-beta-rc1.html#comments</comments>
		<pubDate>Mon, 08 Jun 2009 13:25:00 +0000</pubDate>
		<dc:creator>Michael Castilla</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<category><![CDATA[General News]]></category>

		<guid isPermaLink="false">http://wpcandy.com/?p=1850</guid>
		<description><![CDATA[Well, it looks like WordPress 2.8 is (or at least close to being) on track for it&#8217;s release date Wednesday, June 10th. Feel free to download Release Candidate 1 here, and let us know what you think!
Also, check out some other resources on WordPress 2.8 -

Seven Reasons Why Wordpress 2.8 Is Better Than Ever
WordPress 2.8 [...]]]></description>
			<content:encoded><![CDATA[<p>Well, it looks like WordPress 2.8 is (or at least close to being) on track for it&#8217;s release date Wednesday, June 10th. Feel free to download Release Candidate 1 <a href="http://wordpress.org/wordpress-2.8-RC1.zip">here</a>, and let us know what you think!</p>
<p>Also, check out some other resources on WordPress 2.8 -</p>
<ul>
<li><a href="http://clintmaher.com/wordpress/seven-reasons-why-wordpress-28-is-better-than-ever/">Seven Reasons Why Wordpress 2.8 Is Better Than Ever</a></li>
<li><a href="http://weblogtoolscollection.com/archives/2009/06/03/wordpress-28-beta-hands-on-review/">WordPress 2.8 Beta Hands On Review</a></li>
<li><a href="http://justintadlock.com/archives/2009/05/06/custom-taxonomies-in-wordpress-28">Custom taxonomies in WordPress 2.8</a></li>
<li><a href="http://willnorris.com/2009/03/authentication-in-wordpress-28">Authentication in WordPress 2.8</a></li>
</ul>
<p><a href="http://wpseo.org/"><img src="http://wpcandy.com/wp-content/uploads/ads/wpSEO-468x60.png" alt="" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://wpcandy.com/articles/wordpress-28-beta-rc1.html/feed</wfw:commentRss>
		<feedburner:origLink>http://wpcandy.com/articles/wordpress-28-beta-rc1.html</feedburner:origLink></item>
		<item>
		<title>Monday Morning Roundup - April 27, 2009</title>
		<link>http://feedproxy.google.com/~r/wpcandy/~3/BIem3gVy3kk/monday-morning-roundup-april-27-2009.html</link>
		<comments>http://wpcandy.com/articles/monday-morning-roundup-april-27-2009.html#comments</comments>
		<pubDate>Mon, 27 Apr 2009 11:00:01 +0000</pubDate>
		<dc:creator>Dan Philibin</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<category><![CDATA[Collections]]></category>

		<guid isPermaLink="false">http://wpcandy.com/?p=1835</guid>
		<description><![CDATA[News
Automattic now owns WP.com - it doesn&#8217;t really have any great significance yet, but Automattic announced this week that they now have the ownership of WP.com and are brainstorming ideas of what they could do with it. News release
Smashing Magazine Community WordPress Theme Voting - Smashing Magazine is holding an awesome contest with PSD2WordPress to [...]]]></description>
			<content:encoded><![CDATA[<h2>News</h2>
<p><strong><a href="http://en.blog.wordpress.com/2009/04/24/wpcom/">Automattic now owns WP.com</a></strong> - it doesn&#8217;t really have any great significance yet, but Automattic announced this week that they now have the ownership of <a href="http://wp.com">WP.com</a> and are brainstorming ideas of what they could do with it. <a href="http://en.blog.wordpress.com/2009/04/24/wpcom/">News release</a></p>
<p><strong><a href="http://www.smashingmagazine.com/2009/04/25/smashing-community-wordpress-theme-vote-now/">Smashing Magazine Community WordPress Theme Voting</a></strong> - Smashing Magazine is holding an awesome contest with <a href="http://www.psdtowp.com/">PSD2WordPress</a> to create a WordPress theme, in which the community gets to decide what kind of theme the team at SM will create. Voting is open now for another day, I think, so make sure to let them know what kind of theme you want to see! <a href="http://www.smashingmagazine.com/2009/04/25/smashing-community-wordpress-theme-vote-now/">[Link]</a></p>
<p><a href="http://www.woothemes.com/2009/04/time-to-evolve-your-blog/"><img src="http://wpcandy.com/wp-content/uploads/2009/04/thumbphp.jpeg" alt="" class="right alignright" /></a><strong><a href="http://www.woothemes.com/2009/04/time-to-evolve-your-blog/">WooThemes releases free Meta-Morphosis theme</a></strong> - WooThemes has a reputation for great themes with lots of features. Most of those themes are licensed, but luckily there&#8217;s a few on their site with great features that don&#8217;t cost a cent. Their latest, <a href="http://www.woothemes.com/2009/04/meta-morphosis/">Meta-Morphosis</a>, is one of those. Features include a widget slider, JavaScript font replacement, and an awesome backend packed with blog options including 8 different color schemes. <a href="http://www.woothemes.com/2009/04/meta-morphosis/">Theme Info</a></p>
<h2>Collections</h2>
<p><strong><a href="http://www.noupe.com/wordpress/13-great-wordpress-speed-tips-tricks-for-max-performance.html">13 Great WordPress Speed Tips &amp; Tricks for MAX Performance</a></strong> - learn some handy tricks on how to speed up your WordPress blog, such as database optimization, caching plugins, compression, and more. <a href="http://www.noupe.com/wordpress/13-great-wordpress-speed-tips-tricks-for-max-performance.html">[Link]</a></p>
<p><a href="http://www.wpzoom.com/wordpress-themes-sets/15-psdtuts-like-wordpress-themes/"><img src="http://wpcandy.com/wp-content/uploads/2009/04/previewjpg.jpeg" alt="" class="right alignright" /></a><strong><a href="http://www.wpzoom.com/wordpress-themes-sets/15-psdtuts-like-wordpress-themes/">15 &#8220;PSDtuts like&#8221; WordPress Themes</a></strong> - if you&#8217;ve ever taken a look at <a href="http://themeforest.net">ThemeForest</a>, you&#8217;ll notice that a lot of themes are heavily influenced by <a href="http://psd.tutsplus.com">PSDTUTS</a> and its sister sites. Here&#8217;s a neat list of 15 themes that share similar design characteristics. <a href="http://www.wpzoom.com/wordpress-themes-sets/15-psdtuts-like-wordpress-themes/">[Link]</a></p>
<h2>Tutorials</h2>
<p><strong><a href="http://5thirtyone.com/archives/2075">Tweet shortened URL of current page to Twitter</a></strong> - Derek Punsalan of 5THIRTYONE explains how to shorten your own blog&#8217;s URLs using .htaccess to leave more room for text in Twitter. <a href="http://5thirtyone.com/archives/2075">[Link]</a></p>
<p><strong><a href="http://www.jepson.no/how-to-exclude-specific-tag-from-query_posts/">How to exclude specific tag from query_posts</a></strong> - as I&#8217;ve noticed from working on numerous themes at <a href="http://wpcoder.com">WPCoder</a>, having &#8220;featured&#8221; posts is really a popular feature these days. The easiest way to do this is probably to tag posts with &#8220;featured&#8221; instead of having a dedicated category, so here&#8217;s how to exclude those posts from the rest of the loops on your site. <a href="http://www.jepson.no/how-to-exclude-specific-tag-from-query_posts/">[Link]</a></p>
<p><a href="http://themesphere.com/twitter-wordpress-comments.html"><img src="http://wpcandy.com/wp-content/uploads/2009/04/twitter-bird.gif" alt="" class="right alignright" /></a><strong><a href="http://themesphere.com/twitter-wordpress-comments.html">How to Integrate Twitter to WordPress Blog Comments</a></strong> - everyone likes a link back to their Twitter profile, right? (mine is <a href="http://twitter.com/danphilibin">@danphilibin</a>) In this tutorial, you&#8217;ll learn how to let your blog commentators share a link to their Twitter profile if they enter that in the website URL field when commentating. Awesome! <a href="http://themesphere.com/twitter-wordpress-comments.html">[Link]</a></p>
<p><strong><a href="http://www.themelab.com/2009/04/25/add-a-widgetized-footer-to-your-wordpress-theme/">Add a Widgetized Footer to Your WordPress Theme</a></strong> - who says widgets are just for sidebars? I&#8217;ve seen them used in plenty of other places, including footers, which is exactly what you&#8217;ll learn to do in this tutorial. <a href="http://www.themelab.com/2009/04/25/add-a-widgetized-footer-to-your-wordpress-theme/">[Link]</a></p>
<p><a href="http://wpseo.org/"><img src="http://wpcandy.com/wp-content/uploads/ads/wpSEO-468x60.png" alt="" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://wpcandy.com/articles/monday-morning-roundup-april-27-2009.html/feed</wfw:commentRss>
		<feedburner:origLink>http://wpcandy.com/articles/monday-morning-roundup-april-27-2009.html</feedburner:origLink></item>
		<item>
		<title>A Guide to CSS and WordPress: Part 1</title>
		<link>http://feedproxy.google.com/~r/wpcandy/~3/wPpMokMeNSg/a-guide-to-css-and-wordpress-part-1.html</link>
		<comments>http://wpcandy.com/articles/tutorials/a-guide-to-css-and-wordpress-part-1.html#comments</comments>
		<pubDate>Thu, 23 Apr 2009 11:00:32 +0000</pubDate>
		<dc:creator>Dan Philibin</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://wpcandy.com/?p=1819</guid>
		<description><![CDATA[In this tutorial we&#8217;ll review the basics of CSS and WordPress, such as image alignment and useful classes, and then next week in part two, I&#8217;ll show you some examples of seemingly complex things you can accomplish with just a bit of CSS.
To allow for flexibility, WordPress adds a number of CSS classes on elements [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial we&#8217;ll review the basics of CSS and WordPress, such as image alignment and useful classes, and then next week in part two, I&#8217;ll show you some examples of seemingly complex things you can accomplish with just a bit of CSS.</p>
<p>To allow for flexibility, WordPress adds a number of CSS classes on elements across the site to make it easier to customize.  Probably the most important set of these classes is for post images.  A good WordPress theme has classes for left, center, and right alignment as well as styling for captions.  It&#8217;s really easy to add these styles to your theme. <span id="more-1819"></span></p>
<h2>Standard Alignment</h2>
<pre><code>.alignleft { float:left; }
.alignright { float:right; }
.aligncenter { display:block; margin:0px auto; }</code></pre>
<p>That&#8217;s it! Now why do we need these classes, you ask? This trio of classes is WordPress&#8217;s default way of aligning images in a post. When a user uploads a new image through the post editor, they can choose to align it to the left, center, right, or just have no alignment (uses the class <code>.alignnone</code>). In order to transfer that display option to the theme, you need to have those classes ready to go on the front-end of the site. </p>
<p>The left, center, and right alignment classes aren&#8217;t just used on images, though. You can use them throughout your site to position other elements like divs, links, etc.</p>
<h2>Image Captions</h2>
<p><img src="http://wpcandy.com/wp-content/uploads/2009/04/caption_diagram.png" alt="" class="alignright right" />If the user decides to add a caption to the image, a div with a class of <code>.wp-caption</code> is wrapped around the image and its caption text, which is stored in a standard paragraph tag (<code>&lt;p&gt;</code>). Below is an example of how to style the caption box, which will have a light grey background and border and a small amount of padding.</p>
<pre><code>.wp-caption { border:1px solid #ccc; background:#eee; padding:5px; }</code></pre>
<p>If you want to style the caption text, that paragraph tag has a class of <code>.wp-caption-text</code>:</p>
<pre><code>.wp-caption .wp-caption-text { text-align:center; margin-top:5px; }</code></pre>
<p>As for post images, that&#8217;s about it! Next, let&#8217;s take a look at some of the other standard classes you&#8217;ll find throughout a WordPress site.</p>
<h2>Menus</h2>
<p>In order to create a good navigation menu, it&#8217;s important to know your menu classes. Fortunately, WordPress provides plenty of classes within its dynamic menus to allow for an adequate amount of customization.</p>
<p><img src="http://wpcandy.com/wp-content/uploads/2009/04/page_classes_diagram.png" alt="page_classes_diagram" title="page_classes_diagram" class="alignleft left" />
<div style="clear:both;"></div>
<p>As you can see in the diagram above, every list item that WordPress generates has at least one class. This menu was generated with the standard <code>wp_list_pages()</code> function. If you aren&#8217;t familiar with the code structure of the menu above, the entire thing is an unordered list, each upper level link and subpage link is a <code>&lt;li&gt;</code> list item, and the subpage menus are contained in unordered lists as well.</p>
<p>It&#8217;s actually quite easy to understand. The active page will <strong>always</strong> have the <code>.current_page_item</code> class. If you&#8217;re currently on a subpage, the parent menu item gets the <code>.current_page_parent</code> class. Every other list item just has the standard <code>.page_item</code> class. In the second part of this tutorial, which we&#8217;ll publish next week, I&#8217;ll demonstrate a CSS technique that will help you create a menu similar to the one above using those classes.</p>
<h2>Others</h2>
<p>Images and menus are probably the two sets of classes you&#8217;ll use the most, but there are a few others that you should take note of as well.</p>
<p><strong>Categories</strong> - the setup of category lists is quite similar to pages. Each category list item has a class of <code>.cat-item</code>, the active category has <code>.current-cat-item</code>, and when viewing a subcategory, the parent has a class of <code>.current-cat-parent</code>. <strong>Notice</strong> the hyphens instead of the underscores. I can&#8217;t tell you why it&#8217;s like that but maybe we&#8217;ll see a uniformity in classes in the near future.</p>
<p><strong>Widgets</strong> - the classes involved with a widget can be customized but the typical setup is that the widget is enclosed in <code>&lt;div class="widget"&gt;</code>.</p>
<h2>Conclusion</h2>
<p>So those are the basics of WordPress CSS classes. Next Thursday, we&#8217;ll take a look at a few more sets of classes and then learn a few techniques that rely heavily on CSS to create the desired end result. If you&#8217;re just getting started with WordPress development, hopefully you&#8217;ve learned some helpful information from this article. See you next week!
<p><a href="http://wpseo.org/"><img src="http://wpcandy.com/wp-content/uploads/ads/wpSEO-468x60.png" alt="" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://wpcandy.com/articles/tutorials/a-guide-to-css-and-wordpress-part-1.html/feed</wfw:commentRss>
		<feedburner:origLink>http://wpcandy.com/articles/tutorials/a-guide-to-css-and-wordpress-part-1.html</feedburner:origLink></item>
		<item>
		<title>Monday Morning Roundup - April 20, 2009</title>
		<link>http://feedproxy.google.com/~r/wpcandy/~3/6EOoyThU9ZQ/monday-morning-roundup-april-20-2009.html</link>
		<comments>http://wpcandy.com/articles/monday-morning-roundup-april-20-2009.html#comments</comments>
		<pubDate>Mon, 20 Apr 2009 11:00:28 +0000</pubDate>
		<dc:creator>Dan Philibin</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<category><![CDATA[Collections]]></category>

		<guid isPermaLink="false">http://wpcandy.com/?p=1768</guid>
		<description><![CDATA[Happy Birthday!
WPZOOM is celebrating their first birthday! To celebrate the occasion, they&#8217;re giving away a copy of their own Yamidoo Magazine theme and are discounting the theme by 50% for the next week.  Congratulations to Pavel Ciorici, WPZOOM owner, for putting together a great weblog. He certainly has something to be proud of! [Link]
News
WordPress [...]]]></description>
			<content:encoded><![CDATA[<h3>Happy Birthday!</h3>
<p><img src="http://wpcandy.com/wp-content/uploads/2009/04/birthday1year1jpg.jpeg" class="right alignright" align="right" alt="" /><strong><a href="http://www.wpzoom.com/wpzoom/happy-birthday-wpzoom-special-offer-contest/">WPZOOM is celebrating their first birthday!</a></strong> To celebrate the occasion, they&#8217;re giving away a copy of their own Yamidoo Magazine theme and are discounting the theme by 50% for the next week.  Congratulations to Pavel Ciorici, WPZOOM owner, for putting together a great weblog. He certainly has something to be proud of! <a href="http://www.wpzoom.com/wpzoom/happy-birthday-wpzoom-special-offer-contest/">[Link]</a></p>
<h3>News</h3>
<p><strong><a href="http://alexking.org/blog/2009/04/13/wordpress-helpcenter">WordPress HelpCenter Launched</a></strong> - Alex King announces a new site by Crowd Favorite - <a href="http://wphelpcenter.com">WordPress HelpCenter</a>. They provide all kinds of WordPress-related services such as support, theme installation and upgrades, customization, and more. Pretty cool! <a href="http://wphelpcenter.com">[Link]</a></p>
<p><strong><a href="http://wordpress.org/extend/themes/p2">P2 Released</a></strong> - P2, the long-awaited upgrade to the Prologue theme, was released this week. P2 is a unique blog theme in that it&#8217;s made for short Twitter-like updates instead of full blog posts. <a href="http://wordpress.org/extend/themes/p2">[Link]</a></p>
<h3>Tutorials</h3>
<p><strong><a href="http://net.tutsplus.com/articles/news/the-best-psd-to-html-to-wordpress-video-series-available-new-plus-tutorial/">NETTUTS+ Complete PSD to WordPress Tutorial</a></strong> - NETTUTS+ has released a massive 14-episode, 3+ hour tutorial on how to convert a PSD into a WordPress theme. The only requirement is that you have a NETTUTS+ account, butu at $9 a year and loads of awesome content that comes with it, it&#8217;s most definitely a steal. <a href="http://net.tutsplus.com/articles/news/the-best-psd-to-html-to-wordpress-video-series-available-new-plus-tutorial/">[Link]</a></p>
<p><strong><a href="http://themeshaper.com/wordpress-theme-blank-framework/">How To Make Any WordPress Theme A Blank Framework</a></strong> - <em>&#8220;&#8230;any WordPress theme can be a theme framework&#8221;</em> says Ian Stewart. And that&#8217;s exactly what this tutorial explains how to do. <a href="http://themeshaper.com/wordpress-theme-blank-framework/">[Link]</a></p>
<p><strong><a href="http://www.smashingmagazine.com/2009/04/15/10-exceptional-wordpress-hacks/">10 Exceptional WordPress Hacks</a></strong> - Looking to learn a few more WordPress tricks? Smashing Magazine&#8217;s latest article has ten helpful tips to make your themes and sites even better. <a href="http://www.smashingmagazine.com/2009/04/15/10-exceptional-wordpress-hacks/">[Link]</a></p>
<p><strong><a href="http://justintadlock.com/archives/2009/04/15/how-to-widgetize-your-page-menu-in-wordpress">How to widgetize your page menu in WordPress</a></strong> - take even more control over your pages by widgetizing your page menu, which will allow you to add things like custom drop down menus and other widgets to your dynamic page menus. <a href="http://justintadlock.com/archives/2009/04/15/how-to-widgetize-your-page-menu-in-wordpress">[Link]</a></p>
<h3>Collections</h3>
<p><strong><a href="http://www.hongkiat.com/blog/41-great-looking-free-wordpress-themes/">41 Great Looking Free WordPress Themes</a></strong> - who says great themes have to be paid for? HongKiat has a list of 41 cool, unique themes that might be a great choice for your own blog. <a href="http://www.hongkiat.com/blog/41-great-looking-free-wordpress-themes/">[Link]</a></p>
<p><strong><a href="http://www.wpzoom.com/wordpress-themes-sets/35-wordpress-theme-releases-for-april-2009/">35 WordPress Theme Releases for April 2009</a></strong> - WPZOOM rounds up 35 of the best themes released this past month. <a href="http://www.wpzoom.com/wordpress-themes-sets/35-wordpress-theme-releases-for-april-2009/">[Link]</a></p>
<p><strong><a href="http://www.inspiredm.com/2009/04/17/the-most-rare-and-unique-wordpress-themes/">The most rare and unique WordPress themes</a></strong> - if unique is your thing, then this collection is for you. Inspired Magazine presents ten free and premium themes with atypical layouts and features. <a href="http://www.inspiredm.com/2009/04/17/the-most-rare-and-unique-wordpress-themes/">[Link]</a></p>
<h3>Discussions</h3>
<p><strong><a href="http://ptahdunbar.com/wordpress/on-using-wordpress-theme-frameworks/">On using WordPress Theme Frameworks</a></strong> - Ptah Dunbar offers his thoughts on how theme frameworks <em>should</em> work - parent themes provide the functionality, child themes build on top of it. Agreed. <a href="http://ptahdunbar.com/wordpress/on-using-wordpress-theme-frameworks/">[Link]</a></p>
<h3>Redesigns</h3>
<p>There were three notable redesigns this week in the WordPress community. Must be that time of year!</p>
<p><a href="http://central.wordcamp.org"><img src="http://wpcandy.com/wp-content/uploads/2009/04/wccentral_redesign.png" alt="WordCamp Central" style="float:left;" /></a><a href="http://themeshaper.com"><img src="http://wpcandy.com/wp-content/uploads/2009/04/themeshaper_redesign.png" alt="ThemeShaper" style="float:left; margin:0px 15px;" /></a><a href="http://themehybrid.com"><img src="http://wpcandy.com/wp-content/uploads/2009/04/themehybrid_redesign.png" alt=Theme Hybrid" style="float:left;" /></a></p>
<p><strong><a href="http://central.wordcamp.org/">WordCamp Central</a></strong> redesigned with a cleaner layout, better organization, and an awesome Google Map of past and upcoming WordCamps!</p>
<p><strong><a href="http://themeshaper.com">ThemeShaper</a></strong> got an overhaul last week to showcase some of the things that Thematic, the popular framework that resides on ThemeShaper, can do. <a href="http://themeshaper.com/themeshaper-redesigned-reloaded/">Introduction Article</a></p>
<p><strong><a href="http://themehybrid.com/">Theme Hybrid</a></strong>, the home of Justin Tadlock&#8217;s <em>Hybrid</em> framework and some awesome (free!) child themes, has a new look that, among other things, does a better job at promoting the downloadable themes on the site. <a href="http://themehybrid.com/archives/2009/04/theme-hybrids-new-look">Introduction Article</a>
<p><a href="http://wpseo.org/"><img src="http://wpcandy.com/wp-content/uploads/ads/wpSEO-468x60.png" alt="" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://wpcandy.com/articles/monday-morning-roundup-april-20-2009.html/feed</wfw:commentRss>
		<feedburner:origLink>http://wpcandy.com/articles/monday-morning-roundup-april-20-2009.html</feedburner:origLink></item>
		<item>
		<title>One More Way To Get WordPress Help</title>
		<link>http://feedproxy.google.com/~r/wpcandy/~3/bwl8avJ6Mtg/one-more-way-to-get-wordpress-help.html</link>
		<comments>http://wpcandy.com/articles/one-more-way-to-get-wordpress-help.html#comments</comments>
		<pubDate>Thu, 16 Apr 2009 11:00:55 +0000</pubDate>
		<dc:creator>Jeff Chandler</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<category><![CDATA[Miscellaneous]]></category>

		<category><![CDATA[alex king]]></category>

		<category><![CDATA[help]]></category>

		<category><![CDATA[support]]></category>

		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpcandy.com/?p=1780</guid>
		<description><![CDATA[Alex King, who is most well known for his popular WordPress plugins and more recently, his Carrington theme framework, made a big announcement the other day regarding a project that his company Crowd Favorite has partnered with called the WordPress HelpCenter. 

Intro
The HelpCenter is not aimed at replacing forums, email, comment forms, or other means [...]]]></description>
			<content:encoded><![CDATA[<p>Alex King, who is most well known for his popular <a href="http://alexking.org/projects">WordPress plugins</a> and more recently, his <a href="http://alexking.org/blog/2008/10/22/introducing-carrington">Carrington theme framework</a>, made a <a href="http://alexking.org/blog/2009/04/13/wordpress-helpcenter">big announcement</a> the other day regarding a project that his company <a href="http://crowdfavorite.com/">Crowd Favorite</a> has partnered with called the <a href="http://wphelpcenter.com/">WordPress HelpCenter</a>. </p>
<p><img src="http://wpcandy.com/wp-content/uploads/2009/04/wphelpcenter-600x267.png" alt="wphelpcenter" width="600" height="267" class="aligncenter size-medium wp-image-1781" /></p>
<h2>Intro</h2>
<p>The HelpCenter is not aimed at replacing forums, email, comment forms, or other means of support. Instead, you&#8217;ll be able to pick up the phone <strong>Mon-Fri</strong> between the hours of <strong>9am-7pm Pacific time</strong> and give them a call to answer any WordPress questions you might have instead of waiting around on a forum for someone to reply. In fact, any phone call under 3 minutes is free.</p>
<h2>The Prices</h2>
<p>The pricing scheme for the types of support queries most commonly asked is as follows:</p>
<ul>
<li>The pricing scheme for the types of support queries most commonly asked is as follows:</li>
<li>Phone Call under 3 minutes is Free</li>
<li>Phone Call 3-25 minutes Includes making changes to resolve most problems.  	$19.99</li>
<li>WordPress Installation 	$19.99</li>
<li>WordPress Upgrade 	$14.99</li>
<li>Basic Plugin or Theme InstallationIncludes most plugins and themes. 	$9.99</li>
<li>Advanced Plugin or Theme InstallationExample: WP Super Cache, etc. - when additional configuration, permissions changes, etc. are required. 	$19.99</li>
<li>Theme TweaksChange colors, fonts, change a header image, etc. 	$19.99</li>
<li>WordPress BackupYour database and all files (including themes and plugins). 	$19.99</li>
</li>
<p>Plugin or Theme Customization: Priced Per Request</li>
</ul>
<p>Judging by the pricing scheme, it looks like most phone calls will cost about $20.00. While reviewing the pricing scheme, I had to chuckle regarding the $19.99 charge to be told how to upgrade WordPress. If you&#8217;re using WordPress 2.7, you now have the ability to upgrade the software with the click of a button, granted your webhost has to play nice with WordPress for it to work, but it should work in most cases. Of course, not everyone is running 2.7 so I can easily see how they could receive a few phone calls wanting to know how to upgrade.</p>
<h2>Testing The Waters</h2>
<p>I decided to give the help center a call around <strong>2PM EDT</strong> to see what the experience was like. First thing I noticed is that you can clearly understand the female recording which reads off a number of options and describes what the HelpCenter can do. She lets me know that I can schedule a call back by sending an email to the WordPress help center. She also tells me that in order to receive help, I need to agree to the <a href="http://wphelpcenter.com/tos/">HelpCenter TOS</a> located on their website which by the way, is one of the simplest terms of service pages I have ever seen. I figured what the heck and pressed 1. I then had the chance to listen to some funky hold music for a few minutes. After listening to the music, I was patched in to one of the support reps. Unfortunately for me, he was not at his desk and I had to leave him a message. Not exactly what I was expecting.</p>
<p>So, hoping I would be patched through to someone else, I hung up and redialed. This time, Chris was at his desk. I described to Chris how I did not want my blog to be crawled by the search engines while still being viewable by human beings. Chris told me to login to my WordPress administration panel, click on the Settings link on the left hand side and then click on Privacy. He then explains the difference between the two options and that I needed to select the second one which would do precisely what I needed. Chris also told me that if my site had already been crawled by search engines, it would take 2-3 weeks for that to be flushed out. </p>
<p>All in all, the call lasted under three minutes and Chris did not attempt to fill my head with rambling in order to keep me on the line for a longer period of time which I&#8217;m thankful for.</p>
<p><img src="http://wpcandy.com/wp-content/uploads/2009/04/helpcentertos-600x156.png" alt="helpcentertos" width="600" height="156" class="aligncenter size-medium wp-image-1786" /></p>
<h2>Does This Make Any Sense?</h2>
<p>While I like the idea behind the WordPress HelpCenter, I wonder why we need one in the first place. Has the WordPress.org support forums which are supposed to be the go to place for support become such a pain for end users that it would be much simpler to just pick up the phone and give these guys a call? </p>
<p>In the WPTavern forum, we are in the process of <a href="http://www.wptavern.com/forum/business-thinktank/384-alex-king-launches-wordpress-helpcenter.html">discussing the HelpCenter topic</a> and a few people have brought up some good points. For instance, WordPress is used internationally. Unless the HelpCenter employs people who know every language, this may be a bottle neck in their service. Also, the center is closed on the weekends and is not open 24/7. What happens if your database crashes or your WordPress upgrade fails at 3am in the morning? Better not pick up the phone and give these guys a call, their sleeping. Thankfully, email, forums and other support means are available when the HelpCenter is not. </p>
<p>The help center operates on Pacific time. Considering the international nature of the software, it may have been better to pick an internationally recognized timezone. But this is not a big gripe in my book as there are plenty of time zone applications out there to help people figure it out. Also, while the site displays the dollar sign next to the amount for certain calls, it may not be obvious to some folks that the type of currency they accept is the USD or U.S. Dollar. </p>
<p>Last but not least, if you&#8217;re going to dial into the HelpCenter internationally, you better use SkypeOut or you&#8217;ll be paying some hefty charges. </p>
<h2>Poised For Success?</h2>
<p>So will the HelpCenter knock other forms of support out of the water? I don&#8217;t think so given their inherent limitations. However, I do think Alex King is on the right track creating a service where people can simply pick up the phone, answer a commonly asked question, and provide immediate satisfaction. What I think will be interesting is how the HelpCenter plans on handling support of third party themes/plugins. There are so many in existence that it would be very hard to know everything about them to provide the level of support typically found via the plugin/theme author. </p>
<p>At the end of the day, the HelpCenter is just another avenue of support if you choose to go down that route. With Alex King being involved, I&#8217;m willing to bet the site will maintain its high quality of service which I experienced today.</p>]]></content:encoded>
			<wfw:commentRss>http://wpcandy.com/articles/one-more-way-to-get-wordpress-help.html/feed</wfw:commentRss>
		<feedburner:origLink>http://wpcandy.com/articles/one-more-way-to-get-wordpress-help.html</feedburner:origLink></item>
		<item>
		<title>Highlight Search Terms with jQuery</title>
		<link>http://feedproxy.google.com/~r/wpcandy/~3/YcHfBdS2t4A/highlight-search-terms-with-jquery.html</link>
		<comments>http://wpcandy.com/community/highlight-search-terms-with-jquery.html#comments</comments>
		<pubDate>Mon, 13 Apr 2009 23:21:43 +0000</pubDate>
		<dc:creator>Michael Castilla</dc:creator>
		
		<category><![CDATA[Community]]></category>

		<guid isPermaLink="false">http://wpcandy.com/?p=1744</guid>
		<description><![CDATA[Show your user where their search terms appear in their query results with this quick tutorial from Weblog Tools Collection. [Link]]]></description>
			<content:encoded><![CDATA[<p>Show your user where their search terms appear in their query results with this quick tutorial from Weblog Tools Collection. <a href="http://weblogtoolscollection.com/archives/2009/04/10/how-to-highlight-search-terms-with-jquery/">[Link]</a></p>]]></content:encoded>
			<wfw:commentRss>http://wpcandy.com/community/highlight-search-terms-with-jquery.html/feed</wfw:commentRss>
		<feedburner:origLink>http://wpcandy.com/community/highlight-search-terms-with-jquery.html</feedburner:origLink></item>
		<item>
		<title>Displaying Error Messages in WordPress</title>
		<link>http://feedproxy.google.com/~r/wpcandy/~3/8aIAJyDWmqk/displaying-error-messages-in-wordpress.html</link>
		<comments>http://wpcandy.com/community/displaying-error-messages-in-wordpress.html#comments</comments>
		<pubDate>Mon, 13 Apr 2009 23:19:47 +0000</pubDate>
		<dc:creator>Michael Castilla</dc:creator>
		
		<category><![CDATA[Community]]></category>

		<guid isPermaLink="false">http://wpcandy.com/?p=1746</guid>
		<description><![CDATA[Ever wanted to know what the actual problem is when WordPress returns a blank white screen? Turns out a simple line of PHP can tell WordPress to output the error. [Link]]]></description>
			<content:encoded><![CDATA[<p>Ever wanted to know what the actual problem is when WordPress returns a blank white screen? Turns out a simple line of PHP can tell WordPress to output the error. <a href="http://webdevstudios.com/blog/how-to-display-error-messages-in-wordpress/">[Link]</a></p>]]></content:encoded>
			<wfw:commentRss>http://wpcandy.com/community/displaying-error-messages-in-wordpress.html/feed</wfw:commentRss>
		<feedburner:origLink>http://wpcandy.com/community/displaying-error-messages-in-wordpress.html</feedburner:origLink></item>
	</channel>
</rss>
