<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Magnetic Webworks &#187; WordPress</title>
	<atom:link href="http://www.magneticwebworks.com/category/blog/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.magneticwebworks.com</link>
	<description>Pixel-Perfect WordPress and UI Development</description>
	<lastBuildDate>Wed, 21 Sep 2011 19:54:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Launch Your Website and Learn WordPress Along the Way</title>
		<link>http://www.magneticwebworks.com/launch-your-website-and-learn-wordpress-along-the-way/</link>
		<comments>http://www.magneticwebworks.com/launch-your-website-and-learn-wordpress-along-the-way/#comments</comments>
		<pubDate>Tue, 07 Dec 2010 01:33:31 +0000</pubDate>
		<dc:creator>Doron</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[News and Updates]]></category>
		<category><![CDATA[Personal Gossip]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.magneticwebworks.com/?p=2130</guid>
		<description><![CDATA[Over the past year, I&#8217;ve had some great experiences working with friends who were messing around with WordPress, but just needed me to help them get everything configured and customized. These weren&#8217;t folks who needed a highly customized website solution, but folks who needed their sites to fool people into thinking that they cost a [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-2136" title="launch_and_learn_hdr" src="http://www.magneticwebworks.com/wp-content/uploads/launch_and_learn_hdr.jpg" alt="" width="602" height="180" /></p>
<p>Over the past year, I&#8217;ve had some great experiences working with friends who were messing around with WordPress, but just needed me to help them get everything configured and customized. These weren&#8217;t folks who needed a highly customized website solution, but <strong>folks who needed their sites to fool people into thinking that they cost a fortune to build</strong>.</p>
<h2>The How</h2>
<p>Since <strong>these were people who were open to getting their hands dirty with a little simple technology</strong>, we had a great time working together either via Skype or in person updating the site together, changing a color here, adding an image there, adding a page here, changing the text there, etc. Since WordPress makes it so easy to get a website live, <strong>we could just play around and have fun with it</strong> until we ended up with what my friends wanted to see, all the while cracking silly jokes about all sorts of sundry (but family-friendly, of course) topics.</p>
<p><span id="more-2130"></span></p>
<h2>The End</h2>
<p>At the end of our little WordPress jam session,<strong> my friends ended up with a website that would have cost potentially thousands of dollars </strong>if they had paid for a custom design built from the ground-up. Of course, sometimes fully-custom is absolutely the way to go. But many other times, it&#8217;s just a waste of money, since you can always expand onto your website as your business/hobby grows.</p>
<p>Since these types of collaborations are such a blast and have such awesome results, I figured that I&#8217;d build into my business as <strong>a service for those looking for a website along with the ability to update and customize it without having to hire an expensive designer</strong> every time they need to change a phone number or modify the sidebar.</p>
<p>I&#8217;ve added on to the package <strong>access to a library of WordPress how-to videos</strong> so you don&#8217;t have to remember everything we&#8217;ve gone over, and slapped on a price tag of <strong>$325</strong>.</p>
<p>Anyhow, this is probably one of my favorite things that I do in my business, so <a href="/services/launch-and-learn-web-sites/"><strong>if what I&#8217;m describing sounds good to you, you can learn more at the official page for this package known as &#8220;Launch and Learn.&#8221;</strong></a></p>
<p>Until next time&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.magneticwebworks.com/launch-your-website-and-learn-wordpress-along-the-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beginner&#8217;s Guide: Creating a WordPress Plugin</title>
		<link>http://www.magneticwebworks.com/beginners-guide-to-creating-a-wordpress-plugin/</link>
		<comments>http://www.magneticwebworks.com/beginners-guide-to-creating-a-wordpress-plugin/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 14:00:29 +0000</pubDate>
		<dc:creator>Doron</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.magneticwebworks.com/?p=1932</guid>
		<description><![CDATA[The ability to create WordPress plugins is a highly coveted skill which only a relatively small proportion of developers out there are actually capable of. Here&#8217;s a quick guide geared towards the absolute beginner to get you started on adding this highly valued asset to your skillset. Create a Home for your Plugin Go to [...]]]></description>
			<content:encoded><![CDATA[<p>The ability to create WordPress plugins is a highly coveted skill which only a relatively small proportion of developers out there are actually capable of. Here&#8217;s a quick guide geared towards the absolute beginner to get you started on adding this highly valued asset to your skillset.</p>
<h4><strong>Create a Home for your Plugin</strong></h4>
<ol>
<li>Go to your <strong>wp-content/plugins folder,</strong> and create a new directory with the name of your plugin. For our purposes, let&#8217;s call the plugin as well as the directory it lives in &#8220;Hello Hello.&#8221;</li>
<li>Inside this new directory, create a single PHP file which will contain the code for your plugin. For our purposes, we&#8217;ll call it &#8220;Hello-Hello.php.&#8221;</li>
</ol>
<p><span id="more-1932"></span></p>
<h4><strong>Set Up your Plugin&#8217;s Basic Information</strong></h4>
<p>Here&#8217;s a broken-down version of the PHP code that goes at the top of your new file, Hello-Hello.php</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">/*
// obviously, the name of your plugin
Plugin Name: Hello Hello
// a link to the specific page where your plugin is located
Plugin URI: http://magneticwebworks.com/hello-hello-plugin
// obvious...
Description: Hello Hello plugin, created for tutorial purposes
// obvious...
Author: Doron Orenstein
// Update this with each version of your plugin.
Version: 1.0
// the link to your website
Author URI: http://magneticwebworks.com
*/</span></pre></td></tr></table></div>

<h4><strong>See your Plugin in the Plugins Screen</strong></h4>
<p><em>&#8220;Look Ma, I&#8217;m a pro now!&#8221;</em> The code at the top of your plugin file is now showing up on the plugins screen.<br />
<img src="http://www.magneticwebworks.com/wp-content/uploads/plugins.png" alt="" title="plugins" width="550" height="236" class="aligncenter size-full wp-image-1983" style="border:1px solid #000; margin:10px 0 0;" /></p>
<h4><strong>Create the Function that Calls your Plugin&#8217;s Functionality</strong></h4>
<p>Here we&#8217;re setting up the code to display the words &#8220;Hello Hello.&#8221;</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> hellohello_display_text<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$output</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;Hello Hello&quot;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<h4><strong>Create the Short Code to Make Your Plugin Easy to Implement</strong></h4>
<p>This makes it easy for any non-technical person to call up the words &#8220;Hello Hello&#8221; by simply adding [hellohello] into any page or blog post. Otherwise we&#8217;d have to put a PHP function in the page or post template file, which is not very user-friendly or useful for the average user.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// Add shortcode</span>
add_shortcode<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'hellohello'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'hellohello_display_text'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<h4><strong>The Complete Code</strong></h4>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #666666; font-style: italic;">/*
Plugin Name: Hello Hello
Plugin URI: http://wordpress.org
Description: Hello Hello created for tutorial purposes.
Author: Doron Orenstein
Version: 1.0
Author URI: http://magneticwebworks.com
*/</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> hellohello_display_text<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$output</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;Hello Hello&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// Add shortcode	</span>
add_shortcode<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'hellohello'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'hellohello_display_text'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
&nbsp;
&nbsp;
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<h4><strong>Implementing the Plugin on your Web Site</strong></h4>
<p>As mentioned above, thanks to the shortcode we created, this is exceedingly simple. To do this, all we need to do is add [hellohello] in your blog posts and pages as shown below.</p>
<p><img class="aligncenter size-full wp-image-1950" style="border: 1px solid #000; margin:10px 0 0;" title="shortcode" src="http://www.magneticwebworks.com/wp-content/uploads/shortcode.png" alt="" width="595" height="244" /></p>
<h4><strong>The <em>Spectacular</em> Final Result</strong></h4>
<p><img class="aligncenter size-full wp-image-1951" style="border: 1px solid #000; margin:10px 0 0;" title="pluginresult" src="http://www.magneticwebworks.com/wp-content/uploads/pluginresult.png" alt=" width="500" height="286" /></p>
<p>Obviously, this is merely scratching the surface of what&#8217;s possible with WordPress plugins, but the point here is to provide an launching point that&#8217;s not too overwhelming while also encouraging any WordPress development newbie to take their own plugin development skills to the next level.</p>
<p>Kudos go out to <a href="http://inkblought.com" target="_blank">Benjamin Robert Mueller</a> and <a href="http://www.pixeljar.com"target="_blank">Brandon Dove</a>, my WordPress compadres who I got to geek out with at the <a href="http://www.wordcamp.la" target="_blank">WordCamp LA </a> Developer&#8217;s Day a couple of weeks ago. Thanks to these two fellows, I learned a great deal more about plugin development than I knew coming in, so big ups to those two fellas.  </p>
<p><strong>Happy plugin-<em>ing</em>&#8230;. (?)</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.magneticwebworks.com/beginners-guide-to-creating-a-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quick Tips &amp; Tidbits from WordCamp LA 2010</title>
		<link>http://www.magneticwebworks.com/quick-tips-tidbits-from-wordcamp-la-2010/</link>
		<comments>http://www.magneticwebworks.com/quick-tips-tidbits-from-wordcamp-la-2010/#comments</comments>
		<pubDate>Mon, 13 Sep 2010 15:45:31 +0000</pubDate>
		<dc:creator>Doron</dc:creator>
				<category><![CDATA[2-Minute Tips]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Cool Tools]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.magneticwebworks.com/?p=1890</guid>
		<description><![CDATA[To quote from the WordCamp LA web site: WordCamp is a conference type of event that focuses squarely on everything WordPress. Everyone from casual end users all the way up to core developers show up to these events. These events are usually highlighted by speeches or keynotes by various people. For those of you in [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1892" title="wordcampla" src="http://www.magneticwebworks.com/wp-content/uploads/wordcampla.jpg" alt="" width="450" height="270" /> <strong> </strong></p>
<p><strong>To quote from the <a href="wordcamp.la" target="_blank">WordCamp LA web site</a>:</strong></p>
<blockquote><p>WordCamp is a conference type of event that focuses squarely on everything WordPress. Everyone from casual end users all the way up to core developers show up to these events. These events are usually highlighted by speeches or keynotes by various people.</p></blockquote>
<p><span id="more-1890"></span>For those of you in the WordPress community who&#8217;ve never been, <strong>I highly recommend you check one of these out</strong>, as they are jam-packed with great people and super-informative presentations.</p>
<p>And a <strong>super-special kudos to <a href="http://frostywebdesigns.com" target="_blank">Austin Passy</a> and all of the amazing volunteers</strong> who made sure that the event ran as awesomely as it did.</p>
<p>Although there was <strong>a ton</strong> of actionable information given, here are <strong>just a <em>few</em> great tidbits</strong> from the event that I think would be worth sharing.</p>
<h4><strong>Practical exploits of jQuery with WordPress</strong></h4>
<p><strong>Presenter: </strong><a href="http://pixelhandler.com/" target="_blank"><strong>Bill Heaton</strong></a></p>
<ul>
<li>Displaying photos, videos, static HTML content, &#8220;forward to a friend&#8221; boxes, and really anything else inside of an overlay window, the jQuery plugin called <a href="http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/" target="_blank">Pretty Photo</a> is a rock solid option. For those less comfortable with JavaScript code, there&#8217;s a <a href="http://wordpress.org/extend/plugins/wp-prettyphoto/" target="_blank">WordPress plugin</a> you can use to get those overlay windows going.
<ul>
<li><strong>jQuery plugin</strong> (JavaScript files and code that you implement yourself): <a href="http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone" target="_blank">http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone </a></li>
<li><strong>WordPress plugin </strong>(for easier implementation): <a href="http://wordpress.org/extend/plugins/wp-prettyphoto/" target="_blank">http://wordpress.org/extend/plugins/wp-prettyphoto</a></li>
</ul>
</li>
<li>Use the <strong>jQuery.noConflict()</strong> function to avoid conflicts with other libraries.<a href="http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone" target="_blank"></a></li>
</ul>
<h4><strong>Optimizing the performance WordPress</strong></h4>
<p><strong>Presenter: </strong><a href="http://joshhighland.com/" target="_blank"><strong>Josh Highland</strong></a></p>
<ul>
<li>Only load server modules that you need.</li>
<li>Things to cache include:
<ul>
<li>database queries</li>
<li>PHP code</li>
<li>page requests</li>
<li>assets (images, javascript, css)</li>
</ul>
</li>
<li><a href="http://wordpress.org/extend/plugins/w3-total-cache/" target="_blank">W3 Total Cache</a> is becoming known as the best WordPress performance optimization plugin.</li>
<li>Not all WordPress themes are created equal when it comes to site performance. <strong>Things to be aware of when choosing a theme:</strong>
<ul>
<li>Number of CSS/JS/Images being loaded</li>
<li>Is the CSS/JS minified out of the box?</li>
<li>Are the images optimized?</li>
<li>Is the code optimized (too many database calls)?</li>
</ul>
</li>
</ul>
<ul>
<li><strong>Images:</strong>
<ul>
<li>How many are you loading?</li>
<li>look into <a href="http://wordpress.org/extend/plugins/jquery-image-lazy-loading/" target="_blank">LazyLoad juery plugin</a></li>
<li>Use CSS sprites (create theme automatically at <a href="http://spriteme.org" target="_blank">http://spriteme.org</a>)</li>
<li>Are the images optimized?</li>
<li>Dont resize the image in using the image size percentage in WordPress&#8217; image upload/gallery tool</li>
</ul>
</li>
<li>Watch out for the &#8220;<a href="http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/" target="_blank">Yet Another Related Posts Plugin</a>.&#8221; It queries every single blog post every time the user lands on any blog post.</li>
</ul>
<h4><strong>Advanced Use of Custom Fields</strong></h4>
<p><strong>Presenter: </strong><a href="http://www.thommeredith.com/" target="_blank"><strong>Thom Meredith</strong></a></p>
<ul>
<li><a href="http://wordpress.org/extend/plugins/magic-fields/" target="_blank">Magic Fields </a>is a much more user/client friendly alternative to Custom Post types. It allows you to set up post types that are not necessarily standard WordPress pages or posts, but special entries made specifically for your site. For example, if you have a site that lists movies, you don&#8217;t necessary want to create a blog post or a static page for each movie. Perhaps all you need for each movie listing is the name of the movie and the URL. Magic Fields allows you to create the equivalent of a custom post type that adds a simple form to the bottom of the post or page edit screen with text fields where a non-technical client can easily enter the name and the URL for the movie.</li>
<li>The <a href="http://wordpress.org/extend/plugins/pods/" target="_blank">Pods CMS </a>plugin does the same thing as Magic Fields, but is a bit more flexible, but also a bit more complex to set up.</li>
</ul>
<h4><strong>Introduction to posting on the go</strong></h4>
<p><strong>Presenter: </strong><a href="http://frostywebdesigns.com/" target="_blank"><strong>Austin Passy</strong></a></p>
<ul>
<li>The <a href="http://wordpress.org/extend/plugins/postie/" target="_blank">Postie</a> plugin is a great option for those who want to update their blog via email. It allows simple uploading of photos and blog content, and is also great for clients who don&#8217;t want to mess with the WordPress admin.</li>
</ul>
<h4><strong>Photographic Highlight</strong></h4>
<p><strong><br />
</strong></p>
<div id="attachment_1899" class="wp-caption aligncenter" style="width: 560px"><img class="size-full wp-image-1899" title="WordPress Tattoo" src="http://www.magneticwebworks.com/wp-content/uploads/vagasgeek.jpg" alt="WordPress Tattoo" width="550" height="310" /><p class="wp-caption-text">Now THAT&#39;S dedication! Notice the killer WordPress tattoo on John Hawkins of 9seeds and vegasgeek.com!</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.magneticwebworks.com/quick-tips-tidbits-from-wordcamp-la-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solutions to W3 Total Cache + FaceBook Share Conflict</title>
		<link>http://www.magneticwebworks.com/solution-to-w3-total-cache-facebook-share-conflict/</link>
		<comments>http://www.magneticwebworks.com/solution-to-w3-total-cache-facebook-share-conflict/#comments</comments>
		<pubDate>Sun, 05 Sep 2010 20:43:04 +0000</pubDate>
		<dc:creator>Doron</dc:creator>
				<category><![CDATA[2-Minute Tips]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.magneticwebworks.com/?p=1871</guid>
		<description><![CDATA[The setting that needs to be changed in order for both plugins to live in harmony While working on a client site which used both the W3 Total Cache plugin as well as the Facebook Share plugin, I came across a bug where the Facebook Share icon that was to be placed at the top [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_1873" class="wp-caption aligncenter" style="width: 485px"></p>
<div class="mceTemp mceIEcenter">
<dl id="attachment_1881" class="wp-caption aligncenter" style="width: 485px;">
<dt class="wp-caption-dt"><a href="http://www.magneticwebworks.com/wp-content/uploads/minify.jpg" rel="shadowbox[post-1871];player=img;" title="minify"><img class="size-full wp-image-1881" title="minify" src="http://www.magneticwebworks.com/wp-content/uploads/minify.jpg" alt="" width="475" height="328" /></a><p class="wp-caption-text">The setting that needs to be changed in order for both plugins to live in harmony</p></div>
</dt>
<dd class="wp-caption-dd">The setting that needs to be changed in order for both plugins to live in harmony</dd>
</dl>
</div>
<p style="text-align: left;">
<p style="text-align: left;">While working on a client site which used both the <a href="http://wordpress.org/extend/plugins/w3-total-cache/" target="_blank">W3 Total Cache</a> plugin as well as the <a href="http://wordpress.org/extend/plugins/facebook-share-new/" target="_blank">Facebook Share</a> plugin, I came across a bug where the Facebook Share icon that was to be placed at the top and bottom of each blog post was disappearing, only to be replaced by a &#8220;Share&#8221; link that linked to nowhere.</p>
<p><span id="more-1871"></span>After playing around with the Facebook Share settings for quite some time, I started deactivating plugins one by one to see if there was a conflict causing this. I noticed that <strong>the culprit was the W3 Total Cache plugin</strong>, which was crucial to the stability of this highly trafficked web site and could not be deactivated nor replaced, as <strong>it really is the best plugin for WordPress caching</strong>.</p>
<h4><strong>Solution #1:</strong></h4>
<p>I was able to fix the issue by changing a single W3 Total Cache setting. By going in my admin to Performance &gt; Minify, I scrolled down to the JavaScript settings, unchecked the &#8220;Enable&#8221; checkbox and clicked &#8220;Save changes.&#8221; I was also able to leave the global Minify setting for the plugin (found by navigation to Performance &gt; General Settings) enabled for CSS minification.</p>
<p>Voila! My Facebook Share icon was now appearing on the site again and functioning properly.</p>
<p><strong>It is my feeling that the Facebook Share plugin is not the only plugin out there being impacted by W3 Total Cache&#8217;s minify settings. </strong>I would venture to guess that there a good number of other JavaScript-based plugins that could be broken by JS  magnification, so keep this in mind for future plugin bugs and conflicts.</p>
<h4><strong>Solution #2:</strong></h4>
<p>On my own site, I am running W3 Total Cache with Minify enabled globally (to reduce the memory imprint of <em>both</em> CSS and JS code) while also running a Facebook Like button plugin with no problems.</p>
<p>The W3 Total Cache-compatible Facebook plugin that I&#8217;m running is simply titled &#8220;Like&#8221; and can be found at <a href="http://wordpress.org/extend/plugins/like" target="_blank">http://wordpress.org/extend/plugins/like</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.magneticwebworks.com/solution-to-w3-total-cache-facebook-share-conflict/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Easy Page-Specific WordPress Sidebars</title>
		<link>http://www.magneticwebworks.com/page-specific-sidebars-in-wordpress/</link>
		<comments>http://www.magneticwebworks.com/page-specific-sidebars-in-wordpress/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 00:48:31 +0000</pubDate>
		<dc:creator>Doron</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Cool Tools]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.magneticwebworks.com/?p=1843</guid>
		<description><![CDATA[In yet another step to make WordPress function more like a CMS than a simple blog, there is a recently updated plugin that I think is worth noting. By default, the WordPress sidebar remains identical on every single page of your web site. However, sometimes we need to be able to have a specific sidebars [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.magneticwebworks.com/wp-content/uploads/per_page.jpg" rel="shadowbox[post-1843];player=img;"></a>In yet another step to make WordPress function <strong>more like a CMS than a simple blog</strong>, there is a recently updated plugin that I think is worth noting.</p>
<p><a href="http://www.magneticwebworks.com/wp-content/uploads/per_page.jpg" rel="shadowbox[post-1843];player=img;"></a><strong>By default, the WordPress sidebar remains identical on every single page of your web site. </strong>However, sometimes we need to be able to have a specific sidebars for different pages. For example, maybe you have a &#8220;Products&#8221; page that needs testimonials along the sidebar while your &#8220;About Us&#8221; page sidebar needs to display a listing of awards.</p>
<p><span id="more-1843"></span></p>
<h4><strong>Solutions:</strong></h4>
<p><strong>The Advanced Way:<br />
</strong>Create a separate page template with it&#8217;s own sidebar widget function. Alternately, you could include a conditional statement in your sidebar.php to display different sidebars depending on the page that&#8217;s being displayed.</p>
<p><em>If none of what I&#8217;m saying makes any sense to you, then you&#8217;ll probably want&#8230;</em></p>
<p><strong>The &#8220;Regular Folks&#8221; Way:</strong><br />
Simply download the Per Page Sidebars plugin at<br />
<a href="http://wordpress.org/extend/plugins/per-page-sidebars" target="_blank">http://wordpress.org/extend/plugins/per-page-sidebars</a>.</p>
<p>Once it&#8217;s installed, you&#8217;ll notice that at the bottom of each of your pages is a box titled &#8220;Custom Sidebar&#8221; (see image below). To set up a unique custom sidebar for the page that you&#8217;re creating, simply check the &#8220;Activate Custom Sidebar&#8221; box, and select which of the sidebar widget areas you&#8217;d like to replace. In the screenshot below, we&#8217;re replacing the &#8220;Primary Widget Area&#8221; &#8211; which is the sidebar that goes at the upper right-hand side of every page.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 1px solid;" title="per_page" src="http://www.magneticwebworks.com/wp-content/uploads/per_page.jpg" alt="" width="394" height="191" /></p>
<p>Now go into the &#8220;Widgets&#8221; page of your admin, and you&#8217;ll see a new widget area labled &#8220;PPS-&#8221; followed by the name of the page with the page-specific sidebar.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1853" style="border: 1px solid;" title="widgets" src="http://www.magneticwebworks.com/wp-content/uploads/widgets.jpg" alt="" width="353" height="450" /></p>
<h4><strong>A couple of things to consider:</strong></h4>
<ul>
<li>At this time the plugin only allows you to set up custom sidebars for pages, and <strong><em>not</em> for posts or custom post types.</strong></li>
<li>Removing a custom sidebar widget was a little bit unintuitive. To do so, simply go to the page with the custom sidebar, and <strong>uncheck not only the &#8220;Activate Custom Sidebar?&#8221; checkbox, but <em>also</em> the radio button next to the name of the sidebar that your custom sidebar was replacing.</strong></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.magneticwebworks.com/page-specific-sidebars-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Review of Easy E-Commerce Solution, Wazala</title>
		<link>http://www.magneticwebworks.com/review-of-easy-e-commerce-solution-wazala/</link>
		<comments>http://www.magneticwebworks.com/review-of-easy-e-commerce-solution-wazala/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 00:52:14 +0000</pubDate>
		<dc:creator>Doron</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Cool Tools]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.magneticwebworks.com/?p=1793</guid>
		<description><![CDATA[Wazala is a great new e-commerce solution that can work with any web site and is designed to make setting up an online store a simple copy, paste, point, and click operation. In experimenting with Wazala in conjunction with a WordPress website, sadly, at the time of this blog posting, the WordPress plugin simply did not work [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1825" title="wazala_logo" src="http://www.magneticwebworks.com/wp-content/uploads/wazala_logo.jpg" alt="" width="278" height="68" /><strong>Wazala is a great new e-commerce solution that can work with <em>any</em> web site</strong> and is designed to make setting up an online store a simple copy, paste, point, and click operation.</p>
<p>In experimenting with Wazala in conjunction with a WordPress website, sadly, at the time of this blog posting, <strong>the WordPress plugin simply did not work for me</strong>, and I had to refer to the inaccurate instructions on Wazala&#8217;s web site to get the thing working (long story short, you need to paste a bit of code directly before the &lt;/head&gt; tage of your site.)</p>
<p>However, once you get the code into your header, then <strong>it&#8217;s smooth sailing without another lick of code necessary</strong> to get your store up and running.</p>
<p><span id="more-1793"></span></p>
<h4><strong>How it Works</strong></h4>
<p><strong>To quote from Wazala&#8217;s web site:</strong><br />
<em>Add a &#8220;store&#8221; button to your blog or website, and your store will simply pop-up over your content &#8212; no more sending your customers elsewhere to make a purchase. Wazala functions as a part of your existing site.</em></p>
<div id="attachment_1804" class="wp-caption aligncenter" style="width: 560px"><img class="size-full wp-image-1804 " title="Wazala Store Button" src="http://www.magneticwebworks.com/wp-content/uploads/wazala01.jpg" alt="Wazala Store Button" width="550" height="334" /><p class="wp-caption-text">Wazala Store Button on the upper-right hand side. Upon mouseover, it slides down just a little bit to display checkout information.</p></div>
<p>Once you click on the store button, you get a clean and attractive overlay window with containing your entire store. By default, the window is styled in a neutral manner so that out of the box it integrates pretty seamlessly into the look and feel of your site.</p>
<div id="attachment_1810" class="wp-caption aligncenter" style="width: 560px"><img class="size-full wp-image-1810" title="store_window" src="http://www.magneticwebworks.com/wp-content/uploads/store_window.jpg" alt="" width="550" height="393" /><p class="wp-caption-text">Here&#39;s what the store overlay looks like.  </p></div>
<p>The store in the screencap above allows for multiple categories, which is not possible with the free plan, but comes with the least expensive of the paid plans. The <strong>free plan restricts you to 5 products</strong> and limited functionality, while the <strong>paid plans run anywhere from $9.95 to $29.95 per month</strong>, with significant discounts if you pay for the entire year up front. <a href="http://www.wazala.com/pricing/" target="_blank">Click here to see full pricing details</a>.</p>
<h4>Adding Products</h4>
<p>Adding products is done on Wazala&#8217;s web site using a set of super-easy and intuitive forms that allow for a good amount of flexibility in terms of  product, payment, and shipping options. <strong>I actually found this much easier than that the ubiquitous <a href="http://www.e-junkie.com/" target="_blank">E-junkie</a> shopping cart </strong>where the interface for adding products is much more cluttered and involves jumping through some relatively unintuitive hoops for adding product variations.</p>
<div id="attachment_1812" class="wp-caption alignleft" style="width: 228px"><a href="http://www.magneticwebworks.com/wp-content/uploads/add_product.jpg" rel="shadowbox[post-1793];player=img;" title="Individual Product Options"><img class="size-medium wp-image-1812  " title="Individual Product Options" src="http://www.magneticwebworks.com/wp-content/uploads/add_product-218x300.jpg" alt="" width="218" height="300" /></a><p class="wp-caption-text">(Click to enlarge image) This is where add, edit, and delete individual store products</p></div>
<div id="attachment_1811" class="wp-caption alignleft" style="width: 161px"><a href="http://www.magneticwebworks.com/wp-content/uploads/product_options.jpg" rel="shadowbox[post-1793];player=img;" title="Store-Wide Options"><img class="size-medium wp-image-1811 " title="Store-Wide Options" src="http://www.magneticwebworks.com/wp-content/uploads/product_options-151x300.jpg" alt="" width="151" height="300" /></a><p class="wp-caption-text">(Click to enlarge image) This is where you control store-wide options.</p></div>
<p>
<div class="spacer" style="padding-top: 0;"><img src="/wp-content/themes/Consultant/images/spacer.gif" alt="0" width="1" height="1" /></div>
</p>
<h4>Other Integration Options</h4>
<p>Some other cool things that you can do to make your store integrate more seamlessly and effectively with the rest of your site:</p>
<ul>
<li>Replace the default &#8220;Store&#8221; button on the top of your screen with your own button or text link to be placed anywhere you want on your web site</li>
<li>Link directly to individual products</li>
<li>Add an &#8220;Add to cart&#8221; button or link anywhere on your site</li>
<li>Add an &#8220;Add to Favorites&#8221; or &#8220;Wish List&#8221; button or link anywhere on your site</li>
<li>Add a &#8220;View Shopping Cart&#8221; button or link anywhere on your site</li>
<li>Replace the black semi-transparent overlay which surrounds the store window with a custom background image</li>
<li>Add a custom page to your store which is accessed by clicking on a link at the bottom of the store overlay</li>
</ul>
<h4>Compatible Payment Processing Options</h4>
<ul>
<li>Paypal Premier</li>
<li>Paypal Business</li>
<li>Google Checkout</li>
<li>Paypal Website Payments Pro</li>
<li>Authorize.net</li>
</ul>
<h4>SEO Considerations</h4>
<p>While the overlay makes for very easy integration, keep in mind that your products will not be indexed by the search engines, so <strong>if SEO of your individual products is a deal-breaker, then this is may not be the solution for you.</strong></p>
<p>One possible workaround would be to create individual product pages within your web site. On each product page you could include a button that spawns the store&#8217;s overlay opening to that exact product&#8217;s page.</p>
<h4>Conclusion</h4>
<p>After playing around with the store quite a bit, I found it to be rock-solid and super-easy to use. <strong>Unless your intention is to build a site that is completely centered around e-commerce (a la Walmart.com or BestBuy.com), then I highly recommend Wazala. </strong></p>
<p><strong><span style="font-weight: normal;"><a href="http://www.wazala.com" target="_blank">For more details, see Wazala&#8217;s web site.</a> </span></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.magneticwebworks.com/review-of-easy-e-commerce-solution-wazala/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Solution to NextGen Gallery Slideshow CDN Conflict</title>
		<link>http://www.magneticwebworks.com/solution-to-nextgen-gallery-slideshow-cdn-conflict/</link>
		<comments>http://www.magneticwebworks.com/solution-to-nextgen-gallery-slideshow-cdn-conflict/#comments</comments>
		<pubDate>Sat, 31 Jul 2010 01:08:55 +0000</pubDate>
		<dc:creator>Doron</dc:creator>
				<category><![CDATA[2-Minute Tips]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.magneticwebworks.com/?p=1732</guid>
		<description><![CDATA[Here&#8217;s a special quick post this week to solve a problem I&#8217;ve been seeing around the web, but with no solution. I was recently working on a high-traffic site that that uses using the W3 Total Cache plugin in conjunction with an Akamai CDN. This is a great way to optimize site performance and stability, but [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.magneticwebworks.com/wp-content/uploads/cdn_solution.jpg" rel="shadowbox[post-1732];player=img;" title="Solution to NextGen Gallery Slideshow CDN Conflict"><img class="aligncenter size-full wp-image-1736" title="Solution to NextGen Gallery Slideshow CDN Conflict" src="http://www.magneticwebworks.com/wp-content/uploads/cdn_solution.jpg" alt="Solution to NextGen Gallery Slideshow CDN Conflict" width="549" height="132" /></a></p>
<p style="text-align: left;">Here&#8217;s a special quick post this week to solve a problem I&#8217;ve been seeing around the web, but with no solution.</p>
<p>I was recently working on a high-traffic site that that uses using the <a href="http://wordpress.org/extend/plugins/w3-total-cache/" target="_blank">W3 Total Cache</a> plugin in conjunction with an <a href="http://en.wikipedia.org/wiki/Content_delivery_network" target="_blank">Akamai CDN</a>. This is a great way to optimize site performance and stability, but I did run into the unfortunate side effect of the NextGen Gallery plugin&#8217;s slideshow ceasing to work as soon as the CDN was integrated.</p>
<p><strong>Thanks to my favorite WordPress hosting guru <a href="http://williejackson.com/" target="_blank">Willie Jackson</a>, there is now a solution.</strong></p>
<p><span id="more-1732"></span>Following Willie&#8217;s lead, and as seen in the screencap above, here&#8217;s how you fix this issue:</p>
<ol>
<li>In the settings box for the W3 Total Cache plugin, labeled &#8217;Performance,&#8217;  go into the CDN screen.</li>
<li>At the bottom of the page, there is a box for rejected files.</li>
<li>In that box, add the path to the image rotator .swf file (will be &#8220;wp-content/uploads/imagerotator.swf&#8221; in most cases)</li>
</ol>
<p style="text-align: left;">And voila, your slideshow and CDN live together happily ever after!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.magneticwebworks.com/solution-to-nextgen-gallery-slideshow-cdn-conflict/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>What I Learned About WordPress Last Week #1</title>
		<link>http://www.magneticwebworks.com/what-i-learned-about-wordpress-this-week-1/</link>
		<comments>http://www.magneticwebworks.com/what-i-learned-about-wordpress-this-week-1/#comments</comments>
		<pubDate>Mon, 03 May 2010 03:59:51 +0000</pubDate>
		<dc:creator>Doron</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Cool Tools]]></category>
		<category><![CDATA[News and Updates]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.magneticwebworks.com/?p=1107</guid>
		<description><![CDATA[Inspired by the supa-talented Portland-based designer Deb Pang Davis&#8216;s recent blog post What I Learned this Week #19 2010, I&#8217;ve decided to follow suit with my own list of things I learned, last week, but just about WordPress (otherwise we&#8217;d be here all month, as I obviously know very little and each week is a completely new adventure [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-medium wp-image-1112 aligncenter" title="school_bus" src="http://www.magneticwebworks.com/wp-content/uploads/school_bus.jpg" alt="" width="400" height="286" /></p>
<p style="text-align: left;">Inspired by the supa-talented Portland-based designer <a href="http://www.cococello.com" target="_blank">Deb Pang Davis</a>&#8216;s recent blog post <a href="http://www.cococello.com/blog/article/what-i-learned-this-week-19-2010" target="_blank">What I Learned this Week #19 2010</a>, I&#8217;ve decided to follow suit with my own list of things I learned, <em>last</em> week, but just about <em><strong>WordPress</strong><span style="font-style: normal;"> (otherwise we&#8217;d be here all month, as I obviously know very little and each week is a completely new adventure in </span><span style="font-style: normal;"><strong>all</strong></span><span style="font-style: normal;"> areas of my life)</span></em>.</p>
<p style="text-align: left;"><span id="more-1107"></span></p>
<h4>1) The Easiest Way to Add a Thumbnail Photo Gallery to your Posts and Pages</h4>
<p>While I&#8217;ve always been a big fan of the unbelievable WordPress image gallery plugin <a href="http://wordpress.org/extend/plugins/nextgen-gallery/" target="_blank">NextGen</a>, if I want a simpler (but more limited) solution, the <a href="http://wordpress.org/extend/plugins/shadowbox-js/" target="_blank">Shadowbox JS</a> plugin is an awesome alternative.</p>
<p>For those of you who don&#8217;t know, WordPress gives you the option of creating a thumbnail gallery of images right on your blog post or page. However, the default behavior of this gallery is that upon clicking on each thumbnail, a full-size version of the image appears in your browser&#8217;s main window, taking the user away from your post or page. Pretty lame in my opinion.</p>
<p><a href="http://wordpress.org/extend/plugins/shadowbox-js/" target="_blank">Shadowbox JS</a> makes it so that upon clicking a thumbnail, a dark but transparent overlay with the full-size version of your image appears. Inside this overlay area are navigation buttons so you can flip through your full-size images very easily. This way users quickly see the full-size version of your image without being taken off of the current page.</p>
<p><strong>Get the plugin here: </strong><a href="http://wordpress.org/extend/plugins/shadowbox-js/"><strong>http://wordpress.org/extend/plugins/shadowbox-js/</strong></a></p>
<h4>2) WordPress 3.0&#8242;s Custom Post Types Rule.</h4>
<p>I&#8217;m going to keep this as un-technical as possible, but make a long story short, Custom Post Types allow you to have content on your site that&#8217;s not just limited to standard WordPress pages or blog posts. Basically, this makes WordPress a much more powerful and flexible content management system that will also be ultimately much easier for non-technical folks to update.</p>
<p>For example, you could have special movie review pages, photo feature pages, podcast episode pages, etc. Each of these special content types can be on specially-formatted pages separate from your blog posts or pages. And that&#8217;s just scraping the tip of the iceberg&#8230;</p>
<p>However, setting up custom post types on your WordPress site is likely to take some mucking around with PHP code, so definitely be aware of that.</p>
<p><strong>Here&#8217;s the best article on the topic that I&#8217;ve seen yet: </strong><a href="http://justintadlock.com/archives/2010/04/29/custom-post-types-in-wordpress"><strong>http://justintadlock.com/archives/2010/04/29/custom-post-types-in-wordpress</strong></a></p>
<h4>3) The Magic Fields Plugin also Rules.</h4>
<p>For a long time, this plugin has basically done what the newly-introduced Custom Post Types functionality is doing but using a different technological approach. However what this plugin brings to the table is setting up a much nicer user interface for a non-technical user to update their custom pages and posts.</p>
<p>For example, I am currently working on a project where the client needs to create highly-configurable mini-sites which are not blog posts or pages. In fact, each and every mini-site needs to have its own unique header graphics, page backgrounds, and sidebar content.</p>
<p>Magic Fields allows me to set their site up in a way that the admin section for each mini-site comes complete with an additional form at the bottom of the page that&#8217;s super-easy to use, thereby allowing my client to establish a totally custom look and feel for each individual mini-site.</p>
<p>At this time, the developers of Magic Fields are updating the plugin to integrate with WordPress 3.0&#8242;s Custom Post Types.</p>
<p><strong>Check out the plugin for yourself here: </strong><a href="http://wordpress.org/extend/plugins/magic-fields/"><strong>http://wordpress.org/extend/plugins/magic-fields/</strong></a></p>
<h4>4) I&#8217;m Learning Way More Than I Thought</h4>
<p>As I write this post, I&#8217;m having a difficult time keeping it brief, and also having to leave out a good amount of information. Working full-time as a self-employed WordPress and UI developer forces me to squeeze an <strong>insane</strong> amount of new information into my brain on a daily basis&#8230;and <strong>for that I&#8217;m very grateful</strong>.</p>
<h4><span style="font-weight: normal;"><strong><br />
</strong></span></h4>
]]></content:encoded>
			<wfw:commentRss>http://www.magneticwebworks.com/what-i-learned-about-wordpress-this-week-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Good Times at WordCamp OC</title>
		<link>http://www.magneticwebworks.com/good-times-at-wordcamp-oc/</link>
		<comments>http://www.magneticwebworks.com/good-times-at-wordcamp-oc/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 06:03:30 +0000</pubDate>
		<dc:creator>Doron</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.magneticwebworks.com/?p=1031</guid>
		<description><![CDATA[The WordPress community is notorious for being totally cool and supportive of any and all who use WordPress and are looking to improve their skills as well as the reach of the online efforts. This past weekend&#8217;s WordCamp in Orange County (California, not New Jersey with all due respect&#8230;) most certainly embodied that spirit with 145 friendly and impassioned fellow [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1032" title="oc_wordcamp" src="http://www.magneticwebworks.com/wp-content/uploads/oc_wordcamp.jpg" alt="" width="402" height="109" /></p>
<p>The WordPress community is notorious for being <strong>totally cool </strong>and <strong>supportive</strong> of any and all who use WordPress and are looking to improve their skills as well as the reach of the online efforts. This past weekend&#8217;s WordCamp in Orange County (California, not New Jersey with all due respect&#8230;) most certainly embodied that spirit with 145 friendly and impassioned fellow WordPressers participating in the event.</p>
<p>In addition to the great instruction, included in the dirt-cheap price of $40 was a t-shirt and an <strong><em>awesome</em></strong> Hawaiian BBQ catered lunch.</p>
<p><span id="more-1031"></span></p>
<p>The event consisted of seminars broken into 2 tracks taking place simultaneously in 2 separate classrooms. One track of seminars was geared towards the more entry-level WordPress users while the other more advanced set of seminars was geared more towards the developers.</p>
<p>I personally split my time between the 2 different tracks, since some of the entry level sessions seemed too interesting to pass up, such as &#8220;WordPress for Marketing&#8221; and &#8220;WordPress as a CMS.&#8221;</p>
<h4>Some of the really cool things I learned:</h4>
<p><strong>(CAUTION: Geek-speak ahead):</strong></p>
<div id="attachment_1034" class="wp-caption alignright" style="width: 360px"><img class="size-full wp-image-1034 " title="lucy-beer" src="http://www.magneticwebworks.com/wp-content/uploads/lucy-beer.jpg" alt="" width="350" height="263" /><p class="wp-caption-text">Online marketing guru Lucy Beer presenting the group with her own brand of web wisdom.</p></div>
<ul>
<li>Upgrading WordPress MU 2.9.2 to WordPress 3.0 (which makes WordPress MU obsolete as it natively contains all of MU&#8217;s multi-site functionality) is not a super-easy process unless you&#8217;re a developer</li>
<li>WordPress is no longer referring to WordPress sites as &#8220;blogs&#8221; but rather as &#8220;sites.&#8221; This makes sense as WordPress is truly coming into its own as a full-fledged CMS and not just a blogging tool.</li>
<li> For integrating a forum into a WordPress site, vBulletin seems like the most hassle-free way to go.</li>
<li>vBulletin can allow your WordPress site to function as a paid membership site</li>
<li>If you edit a pre-made plugin and want to make sure that your changes are never overwritten by a plugin update, you can find out how to do that here: <a href="http://markjaquith.wordpress.com/2009/12/14/excluding-your-plugin-or-theme-from-update-checks/">http://markjaquith.wordpress.com/2009/12/14/excluding-your-plugin-or-theme-from-update-checks/</a></li>
<li><a href="http://markjaquith.wordpress.com/2009/12/14/excluding-your-plugin-or-theme-from-update-checks/"></a>Theme frameworks such as <a href="http://themehybrid.com/" target="_blank">Hybrid</a> and <a href="http://diythemes.com/" target="_blank">Thesis</a> save you time by offering TONS of different page templates that you would otherwise have to integrate yourself as well as adding individual classes to just about <strong>everything</strong> in the DOM, but the fact that there&#8217;s a good amount of PHP involved in making even simple tweaks can slow you down if you&#8217;re new to PHP. So those are the factors to weigh when considering going the framework route. (Always been on the fence whether frameworks save or add extra time)</li>
<li>I was reminded how cool the <a href="http://wordpress.org/extend/plugins/pagemash/" target="_blank">PageMash</a> plugin is (I got away from it for a while)</li>
<li>Google Analytics provides a &#8220;heat map&#8221; showing what portion of your site visitors are clicking where on your homepage</li>
<li><a href="http://www.mailchimp.com/" target="_blank">MailChimp</a> can automatically create a newsletter for you based on your blog&#8217;s RSS feed (good if you&#8217;re feeling to lazy to create an original newsletter)</li>
</ul>
<p>I also wanted to give big thanks to the organizers of the event <a href="http://www.think-press.com/" target="_blank">Brandon Dove</a> &amp; <a href="http://pixeljar.net/" target="_blank">Jeffrey Zinn</a> of Orange County-based hosting and web services company, <a href="http://www.pixeljar.net/" target="_blank">Pixel Jar</a>. They, along with a small army of volunteers really put a lot of work into making this event as successful as it was.</p>
<p><strong>For WordPress users and developer of all levels of experience, these events a certainly not-to-be-missed. </strong></p>
<p>Website for the event: <a href="http://www.ocwordcamp.com/">http://www.ocwordcamp.com</a></p>
<p><a href="http://www.ocwordcamp.com/"></a>Website for upcoming the Los Angeles WordCamp: <a href="http://la.wordcamp.org/">http://la.wordcamp.org</a></p>
<p>To find out when WordCamp comes to your neck of the woods: <a href="http://central.wordcamp.org/">http://central.wordcamp.org</a></p>
<div id="attachment_1033" class="wp-caption aligncenter" style="width: 360px"><a href="http://www.magneticwebworks.com/wp-content/uploads/food.jpg" rel="shadowbox[post-1031];player=img;" title="food"><img class="size-full wp-image-1033 " title="food" src="http://www.magneticwebworks.com/wp-content/uploads/food.jpg" alt="" width="350" height="263" /></a><p class="wp-caption-text">Chillin&#39; at lunch with my friends (L-R) Zeke Franco, Lucy Beer, and Melanie Orndorff</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.magneticwebworks.com/good-times-at-wordcamp-oc/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Pictorial Guide to Popular WordPress Sidebar Widgets</title>
		<link>http://www.magneticwebworks.com/pictorial-guide-to-popular-wordpress-sidebar-widgets/</link>
		<comments>http://www.magneticwebworks.com/pictorial-guide-to-popular-wordpress-sidebar-widgets/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 23:09:08 +0000</pubDate>
		<dc:creator>Doron</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Cool Tools]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.magneticwebworks.com/?p=952</guid>
		<description><![CDATA[I thought I&#8217;d provide a pictorial list of the most popular and common WordPress widgets. This chart can be used in the following ways: Non-Designers and WordPress Newbies &#8211; Because you, or the designer you&#8217;ve hired have gotta put something in your sidebar, this guide will remove all of the guesswork from the process and give [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-1015" title="LI01" src="http://www.magneticwebworks.com/wp-content/uploads/LI01.jpg" alt="" width="214" height="186" />I thought I&#8217;d provide a <em>pictorial</em> list of the most <strong>popular and common</strong> WordPress widgets. This chart can be used in the following ways:</p>
<ul>
<li><strong>Non-Designers and WordPress Newbies</strong> &#8211; Because you, or the designer you&#8217;ve hired have gotta put <em>something</em> in your sidebar, this guide will remove all of the guesswork from the process and give you a visual image of what each widget will actually contain and how it will add to your site&#8217;s functionality.</li>
<li><strong>Web Designers Working with a Client</strong> &#8211; You may have already accounted for the sidebar content in your design mockup, but in case you&#8217;d like to give your client the opportunity to decide which widgets they&#8217;d like to use based on their particular goals for the site, a guide like this can save you hours of email and telephone back-and-forth explaining and <em>finally</em> finalizing this absolutely crucial part of the design and development process.</li>
</ul>
<p>Of course, this list represents just a <strong>teeny-tiny micro-fraction</strong> of the possibilities for WordPress sidebar widgets, as the total number of available <a href="http://wordpress.org/extend/plugins/" target="_blank">WordPress plugins</a> goes well into the <em>thousands</em>. <strong>This is simply meant to be a basic starting point.</strong></p>
<p><span id="more-952"></span></p>
<h4><strong>For the newbies out there:</strong></h4>
<ul>
<li>Keep in mind that the images of the widgets below are taken from <strong>one particular website</strong>, and these widgets will <strong>not </strong>look exactly like this on your site. Instead, <strong>they will be styled to fit your particular site&#8217;s design</strong>.</li>
<li>You can make the title of your widgets whatever you&#8217;d like. If you&#8217;re working with a designer, make sure to <strong>let them know what you&#8217;d like each widget to be titled.</strong></li>
</ul>
<table class="chart" border="0" cellspacing="1" cellpadding="5">
<tbody>
<tr>
<th align="left" valign="top">ID #</th>
<th align="left" valign="top">Name</th>
<th align="left" valign="top">Notes</th>
<th align="left" valign="top">Image</th>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#ffffff"><strong>PA01</strong></td>
<td align="left" valign="top" bgcolor="#ffffff"><strong>Pages</strong></td>
<td align="left" valign="top" bgcolor="#ffffff">
<ul>
<li>Displays a list of the pages on your website. Usually unnecessary if you have a navigation bar at the top of your site with all of the pages already listed.</li>
<li>Built into WordPress</li>
</ul>
</td>
<td align="left" valign="top" bgcolor="#ffffff"><img class="aligncenter size-full wp-image-1013" title="PA01" src="http://www.magneticwebworks.com/wp-content/uploads/PA01.jpg" alt="" width="213" height="163" /></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#ffffff"><strong>LI01</strong></td>
<td align="left" valign="top" bgcolor="#ffffff"><strong>Links</strong></td>
<td align="left" valign="top" bgcolor="#ffffff">
<ul>
<li>Displays a list of links to other websites that you&#8217;d like to promote or share on your site.</li>
<li>If you&#8217;re working with a web designer and you&#8217;d like to use this sidebar, make sure you include the links you&#8217;d like to use when you request this widget.</li>
<li>Built into WordPress</li>
</ul>
</td>
<td align="left" valign="top" bgcolor="#ffffff"><img class="aligncenter size-full wp-image-1015" title="LI01" src="http://www.magneticwebworks.com/wp-content/uploads/LI01.jpg" alt="" width="214" height="186" /></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#ffffff"><strong>TE01</strong></td>
<td align="left" valign="top" bgcolor="#ffffff"><strong>Text</strong></td>
<td align="left" valign="top" bgcolor="#ffffff">
<ul>
<li>This is a just simple text widget that allows you to display any text you&#8217;d like to include.</li>
<li>Built into WordPress</li>
</ul>
</td>
<td align="left" valign="top" bgcolor="#ffffff"><img class="aligncenter size-full wp-image-1005" title="TE01" src="http://www.magneticwebworks.com/wp-content/uploads/TE01.jpg" alt="" width="217" height="206" /></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#ffffff"><strong>TE02</strong></td>
<td align="left" valign="top" bgcolor="#ffffff"><strong>Text (with image)</strong></td>
<td align="left" valign="top" bgcolor="#ffffff">
<ul>
<li>This is the exact same widget as TE01, but I&#8217;m simply showing you another way to use it. In this case, we can place an advertising banner in the widget. You could even have BOTH an ad AND text in this widget.</li>
<li>Built into WordPress</li>
</ul>
</td>
<td align="left" valign="top" bgcolor="#ffffff"><img class="aligncenter size-full wp-image-1004" title="TE02" src="http://www.magneticwebworks.com/wp-content/uploads/TE02.jpg" alt="" width="220" height="202" /></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#ffffff"><strong>SE01</strong></td>
<td align="left" valign="top" bgcolor="#ffffff"><strong>Search</strong></td>
<td align="left" valign="top" bgcolor="#ffffff">
<ul>
<li>This widget allows users to search your website.</li>
<li>Built into WordPress</li>
</ul>
</td>
<td align="left" valign="top" bgcolor="#ffffff"><img class="aligncenter size-full wp-image-1027" title="SE01" src="http://www.magneticwebworks.com/wp-content/uploads/SE01.jpg" alt="" width="206" height="115" /></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#ffffff"><strong>NL01</strong></td>
<td align="left" valign="top" bgcolor="#ffffff"><strong>Newsletter Signup</strong></td>
<td align="left" valign="top" bgcolor="#ffffff">
<ul>
<li><strong>This widget only comes into play if you are sending out an email newsletter</strong></li>
<li><strong> </strong>Usually this is done using an outside email marketing service such as <a href="http://www.constantcontact.com" target="_blank">Constant Contact</a>, <a href="http://www.mailchimp.com/" target="_blank">MailChimp</a>, or <a href="http://www.icontact.com/" target="_blank">iContact</a> to name just a few of the myriad of companies offering this service.</li>
<li>This signup form is created using code provided by your email marketing service which is simply pasted into a standard WordPress text widget (TE01)</li>
<li>Built into WordPress</li>
</ul>
</td>
<td align="left" valign="top" bgcolor="#ffffff"><img class="aligncenter size-full wp-image-1014" title="NL01" src="http://www.magneticwebworks.com/wp-content/uploads/NL01.jpg" alt="" width="220" height="142" /></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#ffffff"><strong>FP01</strong></td>
<td align="left" valign="top" bgcolor="#ffffff"><strong>Featured Page</strong></td>
<td align="left" valign="top" bgcolor="#ffffff">
<ul>
<li>This widget allows you to take an excerpt from an existing page on your website and feature it in the sidebar.</li>
<li>Since you&#8217;re only displaying an excerpt of the page&#8217;s content here, the widget will provide a link for your website visitors to go to the page that&#8217;s being featured.</li>
<li>You can also specify a small thumbnail image to go inside the widget, but this is optional.</li>
<li>Web-designers and do-it-yourselfers: <a href="http://wordpress.org/extend/plugins/featured-page-widget/" target="_blank">Download plugin here.</a></li>
</ul>
</td>
<td align="left" valign="top" bgcolor="#ffffff"><img class="aligncenter size-full wp-image-1016" title="FP01" src="http://www.magneticwebworks.com/wp-content/uploads/FP01.jpg" alt="" width="214" height="285" /></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#ffffff"><strong>SM01</strong></td>
<td align="left" valign="top" bgcolor="#ffffff"><strong>Find Me On</strong></td>
<td align="left" valign="top" bgcolor="#ffffff">
<ul>
<li>This widget allows you to display your various social media profiles on your WordPress site to offer visitors to your site another way to connect with you online.</li>
<li>You can use this to link to every major social network, and then some (Facebook, Twitter, LinkedIn, etc etc etc)</li>
<li>You can also use this as an RSS link to allow people to subscribe to you blog.</li>
<li>Web-designers and do-it-yourselfers: <a href="http://wordpress.org/extend/plugins/find-me-on/" target="_blank">Download plugin here.</a></li>
</ul>
</td>
<td align="left" valign="top" bgcolor="#ffffff"><img class="aligncenter size-full wp-image-1008" title="SM01" src="http://www.magneticwebworks.com/wp-content/uploads/SM01.jpg" alt="" width="208" height="135" /></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#ffffff"><strong>SM02</strong></td>
<td align="left" valign="top" bgcolor="#ffffff"><strong>Social Media Page</strong></td>
<td align="left" valign="top" bgcolor="#ffffff">
<ul>
<li>This widget is very similar to &#8220;Find Me On&#8221; (SM01), but also give you the option of including the name of each social network. Doesn&#8217;t allow you to change the order of your social media profile listings, and also does not allow you to include an RSS link.</li>
<li>Web-designers and do-it-yourselfers: <a href="http://wordpress.org/extend/plugins/social-media-page/" target="_blank">Download plugin here.</a></li>
</ul>
</td>
<td align="left" valign="top" bgcolor="#ffffff"><img class="aligncenter size-full wp-image-1007" title="SM02" src="http://www.magneticwebworks.com/wp-content/uploads/SM02.jpg" alt="" width="210" height="154" /></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#ffffff"><strong>TW01</strong></td>
<td align="left" valign="top" bgcolor="#ffffff"><strong>Twitter for WordPress</strong></td>
<td align="left" valign="top" bgcolor="#ffffff">
<ul>
<li>If you&#8217;re a Twitter users, this widgets automatically displays your most recent WordPress tweets</li>
<li>You can specify how many of your most recent tweets you&#8217;d like to display.</li>
<li>Web-designers and do-it-yourselfers: <a href="http://wordpress.org/extend/plugins/twitter-for-wordpress/" target="_blank">Download plugin here.</a></li>
</ul>
</td>
<td align="left" valign="top" bgcolor="#ffffff"><img class="aligncenter size-full wp-image-1003" title="TW01" src="http://www.magneticwebworks.com/wp-content/uploads/TW01.jpg" alt="" width="214" height="370" /></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#ffffff"><strong>PH01</strong></td>
<td align="left" valign="top" bgcolor="#ffffff"><strong>FlickrRSS</strong></td>
<td align="left" valign="top" bgcolor="#ffffff">
<ul>
<li>If you have an account with the photo sharing site, Flickr, this widget allows you to display your most recently added images.</li>
<li>You can decide how many images you&#8217;d like to display here</li>
<li>Web-designers and do-it-yourselfers: <a href="http://wordpress.org/extend/plugins/flickr-rss/" target="_blank">Download plugin here.</a></li>
</ul>
</td>
<td align="left" valign="top" bgcolor="#ffffff"><img class="aligncenter size-full wp-image-1012" title="PH01" src="http://www.magneticwebworks.com/wp-content/uploads/PH01.jpg" alt="" width="224" height="266" /></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#ffffff"><strong>RP01</strong></td>
<td align="left" valign="top" bgcolor="#ffffff"><strong>Recent Posts</strong></td>
<td align="left" valign="top" bgcolor="#ffffff">
<ul>
<li><strong>This widget only comes into play if your website is going to be including a blog.</strong></li>
<li>This simply lists the most recent blog posts</li>
<li>You can select how many of your recent posts you&#8217;d like to display here</li>
<li>Built into WordPress</li>
</ul>
</td>
<td align="left" valign="top" bgcolor="#ffffff"><img class="aligncenter size-full wp-image-1009" title="RP01" src="http://www.magneticwebworks.com/wp-content/uploads/RP01.jpg" alt="" width="218" height="187" /></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#ffffff"><strong>RC01</strong></td>
<td align="left" valign="top" bgcolor="#ffffff"><strong>Recent Comments</strong></td>
<td align="left" valign="top" bgcolor="#ffffff">
<ul>
<li><strong>This widget only comes into play if your website is going to be including a blog.</strong></li>
<li>This lists names of your most recent commenters and the name of the blog post that they commented on</li>
<li>You can select how many of recent comments you&#8217;d like to display here</li>
<li>Built into WordPress</li>
</ul>
</td>
<td align="left" valign="top" bgcolor="#ffffff"><img class="aligncenter size-full wp-image-1011" title="RC01" src="http://www.magneticwebworks.com/wp-content/uploads/RC01.jpg" alt="" width="212" height="200" /></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#ffffff"><strong>RC02</strong></td>
<td align="left" valign="top" bgcolor="#ffffff"><strong>Get Recent Comments</strong></td>
<td align="left" valign="top" bgcolor="#ffffff">
<ul>
<li><strong>This widget only comes into play if your website is going to be including a blog.</strong></li>
<li>This lists names of your most recent commenters and an excerpt of the comment that they left</li>
<li>You can select how many of recent comments you&#8217;d like to display here</li>
<li>Web-designers and do-it-yourselfers: <a href="http://wordpress.org/extend/plugins/get-recent-comments/" target="_blank">Download plugin here.</a></li>
</ul>
</td>
<td align="left" valign="top" bgcolor="#ffffff">
<p style="text-align: center;"><a href="http://www.magneticwebworks.com/wp-content/uploads/RC02.jpg" rel="shadowbox[post-952];player=img;" title="RC02"><img class="aligncenter size-full wp-image-1010" title="RC02" src="http://www.magneticwebworks.com/wp-content/uploads/RC02.jpg" alt="" width="217" height="298" /></a></p>
</td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#ffffff"><strong>BC01</strong></td>
<td align="left" valign="top" bgcolor="#ffffff"><strong>Categories</strong></td>
<td align="left" valign="top" bgcolor="#ffffff">
<ul>
<li><strong>This widget only comes into play if your website is going to be including a blog.</strong></li>
<li>This lists names of all of the categories for your blog posts</li>
<li>Built into WordPress</li>
</ul>
</td>
<td align="left" valign="top" bgcolor="#ffffff"><img class="aligncenter size-full wp-image-1018" title="BC01" src="http://www.magneticwebworks.com/wp-content/uploads/BC01.jpg" alt="" width="222" height="207" /></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#ffffff"><strong>SU01</strong></td>
<td align="left" valign="top" bgcolor="#ffffff"><strong>Subscribe Here</strong></td>
<td align="left" valign="top" bgcolor="#ffffff">
<ul>
<li><strong>This widget only comes into play if your website is going to be including a blog.</strong></li>
<li>This widget allows your website visitors to subscribe to your blog via RSS</li>
<li>This also allows website visitors to enter their email address and have blog posts automatically emailed to them as soon as their published.</li>
<li>Web-designers and do-it-yourselfers: <a href="http://wordpress.org/extend/plugins/subscribe-here-widget/" target="_blank">Download plugin here.</a></li>
</ul>
</td>
<td align="left" valign="top" bgcolor="#ffffff"><img class="aligncenter size-full wp-image-1006" title="SU01" src="http://www.magneticwebworks.com/wp-content/uploads/SU01.jpg" alt="" width="209" height="153" /></td>
</tr>
</tbody>
</table>
<p>If you feel that I&#8217;ve left out any <strong>basic</strong> widgets that a <strong>high percentage of WordPress users</strong> would need on their site, <strong>please leave a comment</strong> and if I happen to agree with ya, I&#8217;ll add it to the chart!</p>
<div><span style="line-height: normal; font-size: 11px; -webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px;"><br />
</span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.magneticwebworks.com/pictorial-guide-to-popular-wordpress-sidebar-widgets/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/


Served from: www.magneticwebworks.com @ 2012-02-04 20:50:16 -->
