<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>jonbish's Gooruze Blog</title>
	<link>http://www.gooruze.com/members/jonbish/blog/</link>
	<description>jonbish's Gooruze Blog</description>
	<copyright>Copyright 2010 Gooruze</copyright>
	<language>en-uk</language>
		<item>
			<title>How To Convert an XHTML Website Template into a WordPress Theme</title>
			<author>jonbish</author>
			<description>- http://www.jonbishop.com/2010/03/convert-html-wordpress/
So you have an XHTML valid website template and you would like to put it on top of WordPress. Whether you are starting from scratch or moving your existing website to WordPress as a CMS, this guide will help you get the conversion done.
Keep in mind that these are the basics and this is not a guide on ...</description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.jonbishop.com/2010/03/convert-html-wordpress/" title="Permanent link to How To Convert an XHTML Website Template into a WordPress Theme"><img class="post_image aligncenter frame" src="http://www.jonbishop.com/wp-content/uploads/2010/03/wordpress-html.jpg" width="470" height="150" alt="Convert XHTML/CSS To WordPress" /></a>
</p><p>So you have an XHTML valid website template and you would like to put it on top of WordPress. Whether you are starting from scratch or moving your existing website to WordPress as a CMS, this guide will help you get the conversion done.</p>
<p>Keep in mind that these are the basics and this is not a guide on how to <a href="http://codex.wordpress.org/Designing_Themes_for_Public_Release">develop themes for public release</a>.</p>
<h2>What You Will Need</h2>
<ul>
<li>An XHTML web template</li>
<li>A WordPress install</li>
<li>A text editor (Like <a href="http://www.adobe.com/products/dreamweaver/">Dreamweaver</a> or <a href="http://notepad-plus.sourceforge.net/uk/site.htm">Notepad++</a>)</li>
<li>An FTP client (Like <a href="http://filezilla-project.org/">Filezilla</a>)</li>
</ul>
<h2>Getting Started</h2>
<p><span id="more-1837"></span><br />
First, let&#8217;s set up our theme files.</p>
<h3>Prepare your files</h3>
<p>For this tutorial we are going to use the minimum number of theme files needed to create a functional WordPress theme. Your existing template files should include the following:</p>
<ul>
<li>An HTML Template File</li>
<li>A CSS Stylesheet</li>
<li>An images folder</li>
</ul>
<p>You should rename your HTML Template File to &#8216;index.php&#8217; and your CSS Stylesheet to &#8217;style.css&#8217;. This is important and is how WordPress knows which files are which.</p>
<div id="attachment_1862" class="wp-caption aligncenter" style="width: 420px">
	<img class="size-full wp-image-1862" title="This is an example of what your theme folder should look like" src="http://www.jonbishop.com/wp-content/uploads/2010/03/wordpress-html3.jpg" alt="This is an example of what your theme folder should look like" width="420" height="109" />
	<p class="wp-caption-text">This is an example of what your theme folder should look like</p>
</div>
<h3>Add WordPress Theme Info (<a href="http://www.youtube.com/watch?v=bihANQeHZwY">video</a>)</h3>
<p>This is where your WordPress Theme gets your theme name, description, author link, etc. All you need to do is create a commented out area at the top of your stylesheet as follows:</p>
<blockquote><p>/*<br />
Theme Name: Rose<br />
Theme URI: the-theme&#8217;s-homepage<br />
Description: a-brief-description<br />
Author: your-name<br />
Author URI: your-URI<br />
Template: use-this-to-define-a-parent-theme&#8211;optional<br />
Version: a-number&#8211;optional<br />
.<br />
General comments/License Statement if any.<br />
.<br />
*/<br />
<em>CSS Goes here&#8230;</em></p></blockquote>
<h2>Adding Template Tags To Your Theme</h2>
<p><a href="http://codex.wordpress.org/Template_Tags">Template Tags</a> are bits of code that WordPress uses to populate your website with content. Different tags display different bits of information from the WordPress database. These are the main tags needed to make your WordPress theme work.</p>
<h3>Page Title &#8211; (<a href="http://www.youtube.com/watch?v=LloH-XEco84">video</a>)</h3>
<p>Change whatever is within your &lt;title&gt;&lt;/title&gt; tags to:</p>
<blockquote><p>&lt;?PHP wp_title(&#8221;); ?&gt;</p></blockquote>
<h3>Stylesheet &#8211; (<a href="http://www.youtube.com/watch?v=9dhI4MUyCDk">video</a>)</h3>
<p>We are going to need to swap out the call to our stylesheet with:</p>
<blockquote><p>&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;&lt;?PHP bloginfo(&#8217;stylesheet_url&#8217;); ?&gt;&#8221; type=&#8221;text/css&#8221; media=&#8221;screen&#8221; /&gt;</p></blockquote>
<h3>Plugin Hooks &#8211; (<a href="http://www.youtube.com/watch?v=vYUip_EYWEc">video</a>)</h3>
<p>Next you will need to add Action Hook Template Tags so WordPress plugins can access your theme. All you need to do is add:</p>
<blockquote><p>&lt;?PHP wp_head(); ?&gt;</p></blockquote>
<p>to your header (Usually write above the closing &lt;/head&gt; tag).</p>
<p>Then you should add:</p>
<blockquote><p>&lt;?PHP wp_footer(); ?&gt;</p></blockquote>
<p>to your footer (Usually write above your &lt;/body&gt; tag).</p>
<h3>Media and Script Paths &#8211; (<a href="http://www.youtube.com/watch?v=vvUsdC_P9L0">video</a>)</h3>
<p>By default, your paths will most likely reference your site root. You will need to point all of your multimedia, scripts and stylesheets to your new theme folder within the WordPress file structure using:</p>
<blockquote><p>&lt;?PHP bloginfo(&#8217;template_directory&#8217;); ?&gt;</p></blockquote>
<p>The easiest way to do this is to do a search and replace for &#8217;src=&#8217; and add the appropriate template tags. This is not fool proof as not all template structures are created equal but it will work a majority of the time.</p>
<div id="attachment_1845" class="wp-caption aligncenter" style="width: 420px">
	<img class="size-full wp-image-1845" title="Search and Replace to change paths to WordPress theme paths" src="http://www.jonbishop.com/wp-content/uploads/2010/03/wordpress-html12.jpg" alt="Search and Replace to change paths to WordPress theme paths" width="420" height="175" />
	<p class="wp-caption-text">Search and Replace to change paths to WordPress theme paths</p>
</div>
<h2>Adding The WordPress Loop</h2>
<p><a href="http://codex.wordpress.org/The_Loop">The WordPress loop</a> is what handles all of your websites content. Its main components are:</p>
<ul>
<li>A header</li>
<li>A permalink</li>
<li>Some Content</li>
</ul>
<p>First you will need to identify where your content starts/repeats (if it repeats). The easiest way to do this is to look for your content&#8217;s header and begin The Loop there. The Loop will usually end immediately after your content unless you are displaying extra information below your entries. You will also need to identify where your content begins and ends. <em>Scroll to the end of this section to view some example code.</em></p>
<h3>The Loop Code &#8211; (<a href="http://www.youtube.com/watch?v=R5wcOGHbNZo">video</a>)</h3>
<p>Beginning:</p>
<blockquote><p>&lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&gt;</p></blockquote>
<p>End:</p>
<blockquote><p>&lt;?php endwhile; endif; ?&gt;</p></blockquote>
<h3>Template Tags Within The Loop &#8211; (<a href="http://www.youtube.com/watch?v=TtzO017cNYQ">video</a>)</h3>
<p>The Title:</p>
<blockquote><p>&lt;?php the_title(); ?&gt;</p></blockquote>
<p>The Permalink</p>
<blockquote><p>&lt;?php the_permalink() ?&gt;</p></blockquote>
<p>The Content</p>
<blockquote><p>&lt;?php the_content(&#8217;&lt;p&gt;Read more&lt;/p&gt;&#8217;); ?&gt;</p></blockquote>
<h3>Example Code</h3>
<p>So <a href="http://www.jonbishop.com/wp-content/uploads/2010/03/example1.txt" target="_blank">this</a> becomes <a href="http://www.jonbishop.com/wp-content/uploads/2010/03/example2.txt" target="_blank">this</a>.</p>
<h2>Navigation &#8211; (<a href="http://www.youtube.com/watch?v=7XQigs-t6pk">video</a>)</h2>
<p>Most themes will have the navigation within an unordered list. This makes things easy for you. All you need to do is replace the list elements (everything between the &lt;ul&gt;&lt;/ul&gt; tags) with the following:</p>
<blockquote><p>&lt;?PHP wp_list_pages(&#8217;title_li=&amp;depth=1&amp;sort_column=menu_order&amp;exclude=&#8217;); ?&gt;</p></blockquote>
<p>This is the most basic of menus and wont display child pages. You can exclude pages by simply adding the page ids separated by comas after &#8220;exclude=&#8221;. Learn more about <a href="http://codex.wordpress.org/Template_Tags/wp_list_pages">wp_list_pages()</a>.</p>
<h2>Upload and Activate Your Theme</h2>
<p>Now all you have to do is <a href="http://wordpress.thelinuxpenguin.com/">upload your theme</a> folder which should now consist of:</p>
<ul>
<li>An index.php file with custom code</li>
<li>A CSS file with header information about the theme</li>
<li>An images folder with all of your images</li>
</ul>
<p>If all goes accordingly you should have a functional WordPress theme that allows you to add new pages and posts as well as use most popular WordPress plugins. <strong>It is important to note that you will not be able to add widgets to your sidebar and people will not be able to comment on posts. There may also be some other limitations due to the themes simplicity.</strong></p>
<p>Feel free to <a href="/contact/">contact me</a> if you would like to learn how to bring your theme to the next level with a sidebar, comments and other interactive elements.</p>
<h2>More Resources</h2>
<ul>
<li><a href="http://codex.wordpress.org/Theme_Development">Theme Development</a></li>
<li><a href="http://codex.wordpress.org/Stepping_Into_Templates">Stepping Into Templates</a></li>
<li><a href="http://www.yvoschaap.com/wpthemegen/">WordPress Theme generator</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JonBishop?a=Eodp-oSF-zo:zWu2Si9G4BQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=Eodp-oSF-zo:zWu2Si9G4BQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=Eodp-oSF-zo:zWu2Si9G4BQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=Eodp-oSF-zo:zWu2Si9G4BQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=Eodp-oSF-zo:zWu2Si9G4BQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=Eodp-oSF-zo:zWu2Si9G4BQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=Eodp-oSF-zo:zWu2Si9G4BQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=Eodp-oSF-zo:zWu2Si9G4BQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=Eodp-oSF-zo:zWu2Si9G4BQ:LQx-feW9hR8"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=LQx-feW9hR8" border="0"></img></a>
</div>]]></content:encoded>
			<link>http://www.gooruze.com/members/jonbish/blog/188688/</link>
			<guid isPermaLink="true">http://www.gooruze.com/members/jonbish/blog/188688/</guid>
			<pubDate>Tue, 16 Mar 2010 11:31:07 -0700</pubDate>
		</item>
		<item>
			<title>Does Your Business Need A Website?</title>
			<author>jonbish</author>
			<description>- http://www.jonbishop.com/2010/02/does-your-business-need-a-website/
A couple years ago I would have said it depends. Now it is a necessity.
It doesn&amp;#8217;t matter how big your business is or how much money you bring in. If you exist, I want proof of it on Google - http://www.google.com/. I can bring up a business listing and even get reviews within minutes right from my cell phone ...</description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.jonbishop.com/2010/02/does-your-business-need-a-website/" title="Permanent link to Does Your Business Need A Website?"><img class="post_image aligncenter frame" src="http://www.jonbishop.com/wp-content/uploads/2010/02/needsite.jpg" width="470" height="168" alt="Does your business need a website?" /></a>
</p><p>A couple years ago I would have said it depends. Now it is a necessity.</p>
<p>It doesn&#8217;t matter how big your business is or how much money you bring in. If you exist, I want proof of it on <a id="aptureLink_i8jx0Abz14" href="http://www.google.com/">Google</a>. I can bring up a business listing and even get reviews within minutes right from my cell phone anytime, anywhere.</p>
<p>We live in an on demand world where everything is a click, flick or a button press away.</p>
<h3>But I Can&#8217;t Afford a Thousand Dollar Website!</h3>
<p>Well me neither.<span id="more-1802"></span></p>
<p>Luckily I make them for a living. For those not as fortunate feel free to <a href="http://www.jonbishop.com/about/what-i-do/">learn more</a> about how I can get you up and running with a customizable website for very short cash. The truth of the matter is, you really don&#8217;t need a thousand dollar website. There are tons of free content management systems and thousands of open source plugins on top of that creating endless possibilities for a completely unique, dynamic, out of the box website for your business. It&#8217;s not always about the glitz and the glam but about easily providing the information your audience needs.</p>
<h3>Your Online Identity Freebies</h3>
<p>User moderated reviews and online discussions have become the corner stone of a business&#8217;s online identity. These sites dominate the search engines and our mobile phones when searching for information about businesses and therefor should not be overlooked. You should check these sites to see if your business is already listed and add/modify as needed.</p>
<ul>
<li><a href="http://www.yelp.com/business">Yelp</a></li>
<li><a href="http://maps.google.com/support/bin/answer.py?hl=en&amp;answer=143059">Google Maps</a></li>
<li><a href="http://www.zoominfo.com/Search/AddNewCompany.aspx">ZoomInfo</a></li>
</ul>
<p>These sites require more attention on your part if you decide to participate. They take time to develop interested audiences but can be well worth it in the long run.</p>
<ul>
<li><a href="http://business.twitter.com/twitter101">Twitter</a></li>
<li><a href="http://www.linkedin.com/business">LinkedIn</a></li>
</ul>
<h3>Don&#8217;t Be A Sucker</h3>
<p>That basically just means don&#8217;t spend thousands of dollars on a crazy flashy website for your corner store boutique. Web developers are a dime a dozen &#8211; you can find them at your local college campus, all over <a id="aptureLink_vYS9xWYhe5" href="http://twitter.com/">Twitter</a> and dominating <a id="aptureLink_T78XH0YKP8" href="http://www.craigslist.org/">craigslist</a>. Be careful any way you go about it though. If you think you are getting ripped off, you probably are. Get a couple quotes for the same project and <a href="http://css-tricks.com/web-nerd-terminology-explained/">learn the lingo</a>. Don&#8217;t go overboard with Internet marketing techniques like <a id="aptureLink_rlrSO2Uqku" href="http://en.wikipedia.org/wiki/Social%20media%20marketing">social media marketing</a> and <a id="aptureLink_bDDCmNuApJ" href="http://en.wikipedia.org/wiki/Search%20engine%20optimization">SEO</a>. Get yourself a functional up to date website that provides your audience with what they want.</p>
<p>- Photo by <a title="Link to Curious Expeditions' photostream" rel="dc:creator cc:attributionURL" href="http://www.flickr.com/photos/curiousexpeditions/">Curious Expeditions</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JonBishop?a=2v2YFBKD_Xk:vNAWkIou1ao:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=2v2YFBKD_Xk:vNAWkIou1ao:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=2v2YFBKD_Xk:vNAWkIou1ao:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=2v2YFBKD_Xk:vNAWkIou1ao:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=2v2YFBKD_Xk:vNAWkIou1ao:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=2v2YFBKD_Xk:vNAWkIou1ao:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=2v2YFBKD_Xk:vNAWkIou1ao:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=2v2YFBKD_Xk:vNAWkIou1ao:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=2v2YFBKD_Xk:vNAWkIou1ao:LQx-feW9hR8"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=LQx-feW9hR8" border="0"></img></a>
</div>]]></content:encoded>
			<link>http://www.gooruze.com/members/jonbish/blog/183972/</link>
			<guid isPermaLink="true">http://www.gooruze.com/members/jonbish/blog/183972/</guid>
			<pubDate>Wed, 17 Feb 2010 13:42:57 -0800</pubDate>
		</item>
		<item>
			<title>What Makes An Expert?</title>
			<author>jonbish</author>
			<description>- http://www.jonbishop.com/2010/02/what-makes-an-expert/
I think it&amp;#8217;s pretty simple.
Hard Work and DedicationIt&amp;#8217;s unfair to just write someone off because they use the word expert in their title. I understand there are a lot of people claiming to be experts and they have ultimately tainted the title, but it&amp;#8217;s still a fair title. Chris Brogan even wrote a post awhile ago - http://www.chrisbrogan.com/what-i-want-a-social-media-expert-to-know/ ...</description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.jonbishop.com/2010/02/what-makes-an-expert/" title="Permanent link to What Makes An Expert?"><img class="post_image aligncenter frame" src="http://www.jonbishop.com/wp-content/uploads/2010/02/whatexpert.jpg" width="470" height="168" alt="What Makes an Expert" /></a>
</p><p>I think it&#8217;s pretty simple.</p>
<h3>Hard Work<strong> </strong><em>and</em><strong> </strong>Dedication</h3>
<p>It&#8217;s unfair to just write someone off because they use the word expert in their title. I understand there are a lot of people claiming to be experts and they have ultimately tainted the title, but it&#8217;s still a fair title. Chris Brogan even <a href="http://www.chrisbrogan.com/what-i-want-a-social-media-expert-to-know/">wrote a post awhile ago</a> discussing his criteria for a Social Media Expert and why he removed expert from his title on his &#8220;about&#8221; page.</p>
<h3>What Is An Expert?</h3>
<p><span id="more-1131"></span><br />
Being an expert in anything requires proper guidance and a lot of time. Some research by <a id="aptureLink_ggWLcfXlbi" href="http://en.wikipedia.org/wiki/Anders%20Ericsson">K. Anders Ericsson</a>, Michael J. Prietula, and Edward T. Cokely stated:</p>
<blockquote><p>&#8220;.. even the most gifted performers need a minimum of ten years (or 10,000 hours) of intense training before they win international competitions. In some fields the apprenticeship is longer: It now takes most elite musicians 15 to 25 years of steady practice, on average, before they succeed at the international level.&#8221; &#8211; <a href="http://www.coachingmanagement.nl/The%20Making%20of%20an%20Expert.pdf">The Making of an Expert</a>, p4.</p></blockquote>
<p>Not just that, you also need to maintain a high level of expertise over time and deliver consistent positive results.</p>
<p>Luck also plays a large role as time and proper instruction cost money. Wealthier families are more likely to invest in their child&#8217;s schooling therefor logging their needed practice time early on in their lives.</p>
<p>I also think a large part of being an expert at something requires a certain curiosity and drive that not everyone possesses. Most people give up way before they get close to the number of hours needed to master anything.</p>
<h3>So Are All These Social Media Gurus and Web Experts The Real Deal?</h3>
<p>Well if you&#8217;re going to take the <a id="aptureLink_DoQH4HIme0" href="http://www.gladwell.com/outliers/outliers_excerpt1.html">10,000 hour rule</a> literally, it&#8217;s very possible. This field is unique in that most of the true <a href="http://www.jonbishop.com/2008/10/e-learning-with-social-media/">experts and pioneers are all somewhat  accessible via the Internet</a>. This eliminates the luck component of the expert formula by creating access to needed information with little to no cost.</p>
<p>I have been making websites since 1999. Even if i had only spent 6 hours a day on my computer tinkering I would have reached my 10,000 hours within 5 years. Granted, some newer areas of interest haven&#8217;t even been around for 10 years, but aren&#8217;t these technologies mostly just advancements of existing ones. When the game changes the expert should be on top of their game.</p>
<p>So go ahead and call yourself an expert if you think you&#8217;ve put in your time. I wont criticize you, just <a href="http://www.jonbishop.com/2009/08/actions-speak-louder-than-words/">back it up with excellence</a>.</p>
<p>- Photo by <a rel="dc:creator cc:attributionURL" href="http://www.flickr.com/photos/kky/">akakumo</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JonBishop?a=LtI8Cyzx9wQ:3myUO6_sm6U:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=LtI8Cyzx9wQ:3myUO6_sm6U:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=LtI8Cyzx9wQ:3myUO6_sm6U:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=LtI8Cyzx9wQ:3myUO6_sm6U:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=LtI8Cyzx9wQ:3myUO6_sm6U:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=LtI8Cyzx9wQ:3myUO6_sm6U:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=LtI8Cyzx9wQ:3myUO6_sm6U:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=LtI8Cyzx9wQ:3myUO6_sm6U:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=LtI8Cyzx9wQ:3myUO6_sm6U:LQx-feW9hR8"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=LQx-feW9hR8" border="0"></img></a>
</div>]]></content:encoded>
			<link>http://www.gooruze.com/members/jonbish/blog/183973/</link>
			<guid isPermaLink="true">http://www.gooruze.com/members/jonbish/blog/183973/</guid>
			<pubDate>Wed, 17 Feb 2010 12:05:47 -0800</pubDate>
		</item>
		<item>
			<title>Christmas Survival Guide for Twitter</title>
			<author>jonbish</author>
			<description>- http://www.jonbishop.com/2009/12/christmas-survival-guide-for-twitter/
So you would like to celebrate Christmas and the holidays on Twitter? Well so do I so I&amp;#8217;m putting together this little post to gather my thoughts. Here are some things you can do to help get into the Christmas spirit with your Twitter account.
Decorate Your Twitter PhotoTurn your Twitter Photo into an elf or Santa and even ...</description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.jonbishop.com/2009/12/christmas-survival-guide-for-twitter/" title="Permanent link to Christmas Survival Guide for Twitter"><img class="post_image aligncenter frame" src="http://www.jonbishop.com/wp-content/uploads/2009/12/christmas-tweet1.jpg" width="470" height="150" alt="Christmas on Twitter" /></a>
</p><p>So you would like to celebrate Christmas and the holidays on Twitter? Well so do I so I&#8217;m putting together this little post to gather my thoughts. Here are some things you can do to help get into the Christmas spirit with your Twitter account.</p>
<h3>Decorate Your Twitter Photo</h3>
<p>Turn your Twitter Photo into an elf or Santa and even add some snow with <a href="http://walterhiggins.net/projects/twixenate.html">Twixenate</a> or <a href="http://twibbon.com/join/santa-hat">add a Santa hat with Twibbon.com</a> ( <a href="http://twibbon.com/Search?searchQuery=christmas">Other Christmas twibbons</a>).<span id="more-1775"></span></p>
<h3>Change Your Twitter Background</h3>
<p>You can always decorate your current background with <a href="http://www.photoshopessentials.com/photo-effects/photoshop-snow/">some snow in Photoshop</a> or use one of these templates:</p>
<ul>
<li><a href="http://twitrounds.com/twitter-backgrounds/christmas/">Christmas Themes on Twitrounds</a></li>
<li><a href="http://www.twitter-backgrounds.net/twitter-backgrounds/main/christmas-1.php">Christmas Themes on Twitter-Backgrounds.net</a></li>
<li><a href="http://www.twitterbackgrounds.com/search-twitter-backgrounds/christmas">Christmas Themes on Twitterbackgrounds.com</a></li>
<li><a href="http://www.twitbacks.com/christmas-twitter-backgrounds.html">Christmas Themes on TwitBacks</a></li>
<li><a href="http://techie-buzz.com/featured/excellent-christmas-background-themes-for-twitter.html">Christmas Themes on Techie-Buzz.com</a></li>
<li><a href="http://www.snazzyspace.com/twitter-backgrounds/christmas/page/1">Christmas Themes on snazzyspace.com</a></li>
</ul>
<h3>Help People In Need</h3>
<p>The holidays are a time to give  and help where you can. On Twitter you can join a cause like the <a href="http://www.imod.co.za/2009/12/01/twismas-time/">#twismas movement to raise money for a child</a> or follow some popular charities on Twitter like:</p>
<ul>
<li><a href="http://twitter.com/MakeAWish">Make A Wish Foundation</a></li>
<li><a href="http://twitter.com/RedCross">The Red Cross</a></li>
<li><a href="http://twitter.com/charitywater">Charity Water</a></li>
<li><a href="http://twitter.com/UNICEF">UNICEF</a></li>
<li><a href="http://twitter.com/Kiva">Kiva</a></li>
<li><a href="http://listorious.com/tags/charity">More &#8230;</a></li>
</ul>
<p>Also be sure to check out <a href="http://www.experienceproject.com/twitcause">TwitCause</a>.</p>
<h3>View Christmas Pictures</h3>
<p>Using TweetGrid you can <a href="http://tweetgrid.com/grid?l=0&amp;q1=twitpic+OR+yfrog+filter:links+christmas">see all photos being posted to Twitter about Christmas</a> in one place &#8230; and you don&#8217;t even have to update the page.</p>
<h3>Track and Tweet With Santa</h3>
<p><a href="http://www.noradsanta.org/">Norad has a special website</a> and <a href="http://twitter.com/noradsanta">a Twitter account</a> dedicated to helping you track Santa on his busiest day of the year. Also be sure to check what I believe to be <a href="http://twitter.com/SantaClaus">the real Santa Claus on Twitter</a>. Also, don&#8217;t forget to <a href="http://www.clauschronicles.blogspot.com/">keep up with his blog</a>.</p>
<p>- Photo by <a title="Link to Steve took it's photostream" rel="dc:creator cc:attributionURL" href="http://www.flickr.com/photos/stevewall/"><strong>Steve took it</strong></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JonBishop?a=m8lnTEklerY:rgmqwrwmMDk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=m8lnTEklerY:rgmqwrwmMDk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=m8lnTEklerY:rgmqwrwmMDk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=m8lnTEklerY:rgmqwrwmMDk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=m8lnTEklerY:rgmqwrwmMDk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=m8lnTEklerY:rgmqwrwmMDk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=m8lnTEklerY:rgmqwrwmMDk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=m8lnTEklerY:rgmqwrwmMDk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=m8lnTEklerY:rgmqwrwmMDk:LQx-feW9hR8"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=LQx-feW9hR8" border="0"></img></a>
</div>]]></content:encoded>
			<link>http://www.gooruze.com/members/jonbish/blog/173115/</link>
			<guid isPermaLink="true">http://www.gooruze.com/members/jonbish/blog/173115/</guid>
			<pubDate>Wed, 09 Dec 2009 12:58:37 -0800</pubDate>
		</item>
		<item>
			<title>Comparing Twitter Retweet Data Services</title>
			<author>jonbish</author>
			<description>- http://www.jonbishop.com/2009/12/comparing-twitter-retweet-data-services/
I mainly use BackTweets but am always looking for better solutions. I actually switched from TweetMeme to BackTweets - http://www.jonbishop.com/2009/08/battle-of-the-retweet-buttons/ once I learned about BackTweet&amp;#8217;s advanced functionality and Google Analytics integration. But now I feel it&amp;#8217;s time to take a look back and see where the world of Retweet counts, buttons and stats are really at.
 - http://backtweets.com/
Let&amp;#8217;s ...</description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.jonbishop.com/2009/12/comparing-twitter-retweet-data-services/" title="Permanent link to Comparing Twitter Retweet Data Services"><img class="post_image aligncenter frame" src="http://www.jonbishop.com/wp-content/uploads/2009/12/compare-retweet.jpg" width="470" height="150" alt="Compare Retweet Tracking Services" /></a>
</p><p>I mainly use BackTweets but am always looking for better solutions. I actually <a href="http://www.jonbishop.com/2009/08/battle-of-the-retweet-buttons/">switched from TweetMeme to BackTweets</a> once I learned about BackTweet&#8217;s advanced functionality and Google Analytics integration. But now I feel it&#8217;s time to take a look back and see where the world of Retweet counts, buttons and stats are really at.<span id="more-1752"></span></p>
<p><a href="http://backtweets.com/"><img class="alignnone size-full wp-image-1765" style="border: 1px solid black;" title="BackTweets" src="http://www.jonbishop.com/wp-content/uploads/2009/12/backtweets.jpg" alt="backtweets" width="470" height="90" /></a></p>
<p>Let&#8217;s start off with my current favorite. <a href="http://www.backtype.com/">BackType</a> is a conversational search engine that scans the web for comments about your posts not necessarily on your posts. Where their original intent was to connect blog comments from one blog to another, one can see why they eventually got into the Twitter game. Using their existing technology they expanded their offerings to a site called BackTweets which became one of my favorite sites in an instant.</p>
<p>BackTweets keeps a fairly up to date list of all mentions of your blog. You can search for <a href="http://backtweets.com/search?q=jonbishop.com">all links back to your blog</a> or for <a href="http://backtweets.com/search?q=jonbishop.com/2009/06/16-twitter-analogies-to-help-you-explain-twitter/">specific posts</a>. The data isn&#8217;t much different than Topsy&#8217;s and TweetMeme&#8217;s, I just feel like it&#8217;s the fastest and cleanest, but that&#8217;s just my personal opinion.</p>
<p>I think BackTweets really shines with their <a href="http://www.backtype.com/widgets/tweetcount">TweetCount widget</a> which lets you customize everything from the color and source to weather or not you want it to be RT or &#8220;via&#8221;. Oh, and they automatically add Google Analytic parameters complements of <a href="http://totally.awe.sm/">Awe.sm</a>. Doesn&#8217;t get much better than that. Thanks BackType!</p>
<p><a href="http://tweetmeme.com/"><img class="alignnone size-full wp-image-1766" style="border: 1px solid black;" title="TweetMeme" src="http://www.jonbishop.com/wp-content/uploads/2009/12/tweetmeme.jpg" alt="tweetmeme" width="470" height="90" /></a></p>
<p>Now on to the grandfather of Retweet tracking and indexing. TweetMeme is still my favorite Digg style Tweet aggregator for instant notification on hot topics and trends. Their RT button is probably the most used because of the websites popularity and is almost as dynamic as the BackTweet TweetCount button but falls short at color customization and Google Analytics integration. However, to compensate for the lack of GA integration, they have <a href="http://blog.tweetmeme.com/2009/10/07/tweetmeme-analytics/">developed their own analytics</a> that can track the viral nature of Retweets as they spread throughout Twitter. While I appreciate the entrepreneurial spirit, I prefer integrated analytics where available and prefer the BackTweets button for this reason.</p>
<p><a href="http://topsy.com/"><img class="alignnone size-full wp-image-1767" style="border: 1px solid black;" title="Topsy" src="http://www.jonbishop.com/wp-content/uploads/2009/12/Topsy.jpg" alt="Topsy" width="470" height="90" /></a></p>
<p>I had heard of Topsy but never really learned what they are about. Topsy is basically a Twitter search engine that ranks links being shared based on relevance and influence of those sharing the links. They offer <a href="http://labs.topsy.com/widgets/retweet-button/">a Retweet Count button</a> as well as a list of all tweets linking back to your posts. What really struck me was that they also displayed which shortened URLs were used as well as all tags and authors involved in the process. This could become my new favorite dashboard for viewing Twitter activity around a specific link but it will take a bit more before I switch over to their Retweet button.</p>
<h3>Some Things Worth Mentioning</h3>
<p><a href="http://bit.ly/">Bit.ly</a> uses <a href="http://www.backtype.com/">BackType&#8217;s</a> data to display conversations relevant to your shortened links</p>
<p><a href="http://tweetmeme.com/">TweetMeme</a> has a site very similar to it called <a href="http://retweet.com/">Retweet.com</a> however it is pretty much just a ripoff of TweetMeme and TweetMeme seems to work much better</p>
<p>Sometimes, BackType&#8217;s data will differ from TweetMeme and Topsy however the BackType TweetCount widget seems to display correct data</p>
<p>Be sure to check out <a href="http://www.seoptimise.com/blog/2009/12/3-retweet-buttons-for-wordpress-blog-posts-compared.html">this post from SEOptimise</a> for a nice break down of the Retweet buttons mentioned in this post.</p>
<p>- Photo by <a title="Link to Steve took it's photostream" rel="dc:creator cc:attributionURL" href="http://www.flickr.com/photos/stevewall/"><strong>Steve took it</strong></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JonBishop?a=kziXt6ZP_ak:uSdYDHqAdHE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=kziXt6ZP_ak:uSdYDHqAdHE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=kziXt6ZP_ak:uSdYDHqAdHE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=kziXt6ZP_ak:uSdYDHqAdHE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=kziXt6ZP_ak:uSdYDHqAdHE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=kziXt6ZP_ak:uSdYDHqAdHE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=kziXt6ZP_ak:uSdYDHqAdHE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=kziXt6ZP_ak:uSdYDHqAdHE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=kziXt6ZP_ak:uSdYDHqAdHE:LQx-feW9hR8"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=LQx-feW9hR8" border="0"></img></a>
</div>]]></content:encoded>
			<link>http://www.gooruze.com/members/jonbish/blog/173096/</link>
			<guid isPermaLink="true">http://www.gooruze.com/members/jonbish/blog/173096/</guid>
			<pubDate>Wed, 09 Dec 2009 09:02:55 -0800</pubDate>
		</item>
		<item>
			<title>Get More ReTweets Out Of Your ReTweet Button</title>
			<author>jonbish</author>
			<description>- http://www.jonbishop.com/2009/11/get-more-retweets-out-of-your-retweet-button/
Most of the time when talking about RTs, we discuss the best times to post to Twitter and the number of characters you should be using - http://www.jonbishop.com/2009/02/rules-of-the-retweet/ and so on and so forth. But let&amp;#8217;s step back a second and talk about how people RT from our blogs.
Do you know how many people are RTing your content ...</description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.jonbishop.com/2009/11/get-more-retweets-out-of-your-retweet-button/" title="Permanent link to Get More ReTweets Out Of Your ReTweet Button"><img class="post_image aligncenter frame" src="http://www.jonbishop.com/wp-content/uploads/2009/11/more-retweets.jpg" width="470" height="150" alt="Using ReTweet Buttons" /></a>
</p><p>Most of the time when talking about RTs, <a href="http://www.jonbishop.com/2009/02/rules-of-the-retweet/">we discuss the best times to post to Twitter and the number of characters you should be using</a> and so on and so forth. But let&#8217;s step back a second and talk about how people RT from our blogs.</p>
<p><strong>Do you know how many people are RTing your content from your blog vs on Twitter?</strong></p>
<p>A lot of bloggers don&#8217;t even realize that they are potentially preventing their readers from RTing their content by not having functional RT buttons. I see a lot of buttons that do any one of the following:<br />
<span id="more-1685"></span>
<ul>
<li>Post to Twitter with only an unshortened link (<a href="http://twitter.com/?status=http://www.jonbishop.com/2009/11/get-more-retweets-out-of-your-retweet-button">example</a>)</li>
<li>Post to Twitter with no link and only a title (<a href="http://twitter.com/?status=Get+More+ReTweets+Out+Of+Your+ReTweet+Button">example</a>)</li>
</ul>
<p>Both of which a lot of people might just abandon and you&#8217;ve lost out on a RT.</p>
<p>And then there are people who get very close but miss in the end by doing one of the following:</p>
<ul>
<li>Post to Twitter with an unshortened link and a title (<a href="http://twitter.com/?status=Get+More+ReTweets+Out+Of+Your+ReTweet+Button+http://www.jonbishop.com/2009/11/get-more-retweets-out-of-your-retweet-button">example</a>)</li>
<li>Post to Twitter with a shortened link and a title with a default source (<a href="http://twitter.com/?status=RT+@tweetmeme:+Get+More+ReTweets+Out+Of+Your+ReTweet+Button+http://bit.ly/2RiS7W">example</a>)</li>
</ul>
<p>Why do we all tout the same advice on Twitter about RTs and somehow we don&#8217;t take that same advice to our blogs.</p>
<h3>Some Things Your RT Button Should Do</h3>
<p><strong>Shorten Your Link</strong></p>
<p>URL shortening is important for a few reasons:</p>
<ul>
<li>Allows potential for measurement</li>
<li>Creates more space when RTing</li>
</ul>
<p>It&#8217;s also important to use the right URL shortener. For example I know of people, myself included, who prefer clicking on <a href="http://bit.ly/">bitly</a> links over <a href="http://ow.ly/">owly</a> links because of the way they go about opening content. I have recently become a huge fan of the URL shortening service <a href="http://create.awe.sm/demo">Awe.sm</a> because of their Google Analytics integration and ease of use.</p>
<p><strong>Use ReTweetable Titles</strong></p>
<p>Most, if not all, RT buttons will just use the page title as the title to be tweeted. This causes a problem with most blogs as most themes automatically generate a title that usually includes the blog name along with some nifty symbols to separate the name and the title. You eventually end up with something like:</p>
<blockquote><p>Jon Bishops Blog // This Is My Post // Awesome Blog Stuff http://bit.ly/1JrOCZ</p></blockquote>
<p>It just doesn&#8217;t look all that pretty and at first glance in the public timeline on Twitter could be interpreted as spam.</p>
<p><strong>Give You Credit</strong></p>
<p>If you are using a popular RT button like <a href="http://tweetmeme.com/about/retweet_button">TweetMeme</a> or <a href="http://www.backtype.com/widgets/tweetcount">BackTypes</a>, be sure to change the default source to your own Twitter name. Wouldn&#8217;t you rather see a bunch of RTs with your name in it rather than @tweetmeme or @backtype. This one always surprises me and then I have to go and hunt down the bloggers Twitter name to give the proper credit.</p>
<p><strong>Make It Simple</strong></p>
<p>Don&#8217;t create extra steps for your readers willing to share your content. Use buttons that send them straight to Twitter, no middle man. I&#8217;ve never been a fan of <a href="http://twitthis.com/">http://twitthis.com/</a> for that very reason. It creates an extra step between me and retweeting a post when all I want is a shortened URL to share. I also don&#8217;t like allowing 3rd party sites because, well, I don&#8217;t trust anyone these days.</p>
<h3>Easiest Solutions</h3>
<p>I&#8217;ve <a href="http://www.jonbishop.com/2009/08/battle-of-the-retweet-buttons/">compared a few of these services in further detail in a previous post</a> but the easiest way to make sure you are using the best RT button is to use the <a href="http://tweetmeme.com/about/retweet_button">TweetMeme Button</a> or <a href="http://www.backtype.com/widgets/tweetcount">BackType&#8217;s TweetCount widget</a>. Also be sure to properly configure it so that your title&#8217;s make sense and it&#8217;s not using the default source.</p>
<p><strong>Click my RT button at the top of this post to see how it&#8217;s done ;)</strong></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JonBishop?a=gJjTXtFthSQ:ZCGTYaR5PNc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=gJjTXtFthSQ:ZCGTYaR5PNc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=gJjTXtFthSQ:ZCGTYaR5PNc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=gJjTXtFthSQ:ZCGTYaR5PNc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=gJjTXtFthSQ:ZCGTYaR5PNc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=gJjTXtFthSQ:ZCGTYaR5PNc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=gJjTXtFthSQ:ZCGTYaR5PNc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=gJjTXtFthSQ:ZCGTYaR5PNc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=gJjTXtFthSQ:ZCGTYaR5PNc:LQx-feW9hR8"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=LQx-feW9hR8" border="0"></img></a>
</div>]]></content:encoded>
			<link>http://www.gooruze.com/members/jonbish/blog/167316/</link>
			<guid isPermaLink="true">http://www.gooruze.com/members/jonbish/blog/167316/</guid>
			<pubDate>Tue, 03 Nov 2009 19:38:30 -0800</pubDate>
		</item>
		<item>
			<title>Opening Links In A New Window</title>
			<author>jonbish</author>
			<description></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: center;"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="437" height="370" id="viddler_c75f7611"><param name="movie" value="http://www.viddler.com/player/c75f7611/" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><embed src="http://www.viddler.com/player/c75f7611/" width="437" height="370" type="application/x-shockwave-flash" allowScriptAccess="always" allowFullScreen="true" name="viddler_c75f7611"></embed></object></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JonBishop?a=ngr0VuJsyRU:sZEGvS_MzRI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=ngr0VuJsyRU:sZEGvS_MzRI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=ngr0VuJsyRU:sZEGvS_MzRI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=ngr0VuJsyRU:sZEGvS_MzRI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=ngr0VuJsyRU:sZEGvS_MzRI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=ngr0VuJsyRU:sZEGvS_MzRI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=ngr0VuJsyRU:sZEGvS_MzRI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=ngr0VuJsyRU:sZEGvS_MzRI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=ngr0VuJsyRU:sZEGvS_MzRI:LQx-feW9hR8"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=LQx-feW9hR8" border="0"></img></a>
</div>]]></content:encoded>
			<link>http://www.gooruze.com/members/jonbish/blog/167278/</link>
			<guid isPermaLink="true">http://www.gooruze.com/members/jonbish/blog/167278/</guid>
			<pubDate>Tue, 03 Nov 2009 10:32:27 -0800</pubDate>
		</item>
		<item>
			<title>Thesis &amp; WordPress Plugins</title>
			<author>jonbish</author>
			<description>- http://www.jonbishop.com/2009/11/thesis-wordpress-plugins/
As I submerse myself more and more into the world of Thesis from DIYthemes - http://diythemes.com/?a_aid=jonbish, I am gaining a huge appreciation for all of the enhancements it provides to the WordPress platform. Furthermore, I have developed a new found appreciation for developers who have taken the time to create WordPress plugins that integrate easily with the Thesis ...</description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.jonbishop.com/2009/11/thesis-wordpress-plugins/" title="Permanent link to Thesis &#038; WordPress Plugins"><img class="post_image aligncenter frame" src="http://www.jonbishop.com/wp-content/uploads/2009/11/thesis-plugins1.jpg" width="470" height="150" alt="Thesis WordPress Plugins" /></a>
</p><p>As I submerse myself more and more into the world of <a href="http://diythemes.com/?a_aid=jonbish">Thesis from DIYthemes</a>, I am gaining a huge appreciation for all of the enhancements it provides to the WordPress platform. Furthermore, I have developed a new found appreciation for developers who have taken the time to create WordPress plugins that integrate easily with the Thesis theme.</p>
<p>If you don&#8217;t know about Thesis yet, <a href="http://www.jonbishop.com/2009/09/why-is-thesis-such-a-great-premium-wordpress-theme/">check out my post about why I am such a fan</a>.</p>
<p>The following plugins all make use of the Thesis framework to make their installations extremely painless. Most make use of Thesis additional WordPress hooks to display content in places that were previously inaccessible. I&#8217;ve yet to find a solid list of Thesis ready plugins on the Internet so I took the time to put this list together for whoever is curious.<br />
<span id="more-1606"></span></p>
<h3><a href="http://wordpress.org/extend/plugins/thesis-openhook/">Thesis OpenHook</a></h3>
<p>Thesis OpenHook takes the process of modifying Thesis and simplifies it! I couldn&#8217;t properly make a list of Thesis ready WordPress plugins without including the grandfather of them all. This plugin lets you take full advantage of Thesis additional hooks.</p>
<h3><a href="http://wordpress.org/extend/plugins/thesis-settings-export/">Thesis Import/Export</a></h3>
<p>With this plugin, you can download individual data files for Thesis Options, Design Options, and all OpenHook content.</p>
<h3><a href="http://wordpress.org/extend/plugins/breadcrumbs/">Yoast Breadcrumbs</a></h3>
<p>Automatically add breadcrumbs to your site with no Template tweaks as long as you are running Thesis.</p>
<h3><a href="http://wordpress.org/extend/plugins/thesography/">Thesography</a></h3>
<p>The purpose of this plugin is to make displaying EXIF data as convenient as possible, while using as much of WordPress’ native image handling as possible. It can be inserted automatically into the Thesis theme.</p>
<h3><a href="http://wordpress.org/extend/plugins/javascript-nofollow-links/">Javascript Nofollow Links</a></h3>
<p>This plugin replaces the standard anchor tag for comment author links with a bold tag and adds javascript behavior on the new tag to allow it to be clicked. It contains code for Thesis theme users to remove the redundant link on comment avatars.</p>
<h3><a href="http://wordpress.org/extend/plugins/pixopoint-menu/">PixoPoint Menu Plugin</a></h3>
<p>Adds an SEO friendly, accessible regular or dropdown menu to your WordPress blog. Uses wppagemenu() which is also used by Thesis so no extra steps are needed after installation.</p>
<h3><a href="http://wordpress.org/extend/plugins/commentwitter/">Commentwitter</a></h3>
<p>Gives commenters the option of Tweeting their comments with a link to your post. Uses Thesis hooks to automatically display necessary code below your comment forms.</p>
<h3><a href="http://wordpress.org/extend/plugins/visual-recent-posts/">Visual Recent Posts</a></h3>
<p>This plugin gives the look of a magazine-style website with thumbnails and excerpts in a clean layout. Easily place your Recent Visual Posts by simply inserting your desired Thesis hook on the settings page.</p>
<h3><a href="http://wordpress.org/extend/plugins/fv-descriptions/">FV Descriptions</a></h3>
<p>Simple plugin which allows you to mass edit the description fields of your choice</p>
<h3>Honorable Mentions</h3>
<p>These plugins don&#8217;t use the Thesis framework like the plugins above however were developed with Thesis in mind at some point during their development process.</p>
<ul>
<li><a href="http://wordpress.org/extend/plugins/results-count-remix/">Results Count Remix</a></li>
<li><a href="http://wordpress.org/extend/plugins/wp-menu-creator/">WordPress Menu Creator</a></li>
<li><a href="http://wordpress.org/extend/plugins/wp-ajax-edit-comments/">Ajax Edit Comments</a></li>
<li><a href="http://wordpress.org/extend/plugins/wp-greet-box/">WP Greet Box</a></li>
<li><a href="http://wordpress.org/extend/plugins/subscribe-to-comments/">Subscribe to Comments</a></li>
</ul>
<p>It&#8217;s important to note that most other plugins would work just as well with Thesis than with any other theme. This is only a list of plugins made with Thesis in mind.<strong> If you know of any other WordPress plugins that make use of the Thesis framework, please share them below.</strong></p>
<p><em>Disclaimer: All links to <a href="http://diythemes.com/?a_aid=jonbish">Thesis</a> from this blog are an affiliate link. If you purchase the theme through one of these links I will receive a percentage as commission. This is the first (and probably only) product I would ever endorse for money.</em></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JonBishop?a=7heiDtUdKPc:uaj1LLT-3Lo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=7heiDtUdKPc:uaj1LLT-3Lo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=7heiDtUdKPc:uaj1LLT-3Lo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=7heiDtUdKPc:uaj1LLT-3Lo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=7heiDtUdKPc:uaj1LLT-3Lo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=7heiDtUdKPc:uaj1LLT-3Lo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=7heiDtUdKPc:uaj1LLT-3Lo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=7heiDtUdKPc:uaj1LLT-3Lo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=7heiDtUdKPc:uaj1LLT-3Lo:LQx-feW9hR8"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=LQx-feW9hR8" border="0"></img></a>
</div>]]></content:encoded>
			<link>http://www.gooruze.com/members/jonbish/blog/167131/</link>
			<guid isPermaLink="true">http://www.gooruze.com/members/jonbish/blog/167131/</guid>
			<pubDate>Mon, 02 Nov 2009 11:35:53 -0800</pubDate>
		</item>
		<item>
			<title>WordPress As a CMS</title>
			<author>jonbish</author>
			<description>- http://www.jonbishop.com/2009/10/wordpress-as-a-cms/
Rather than reinvent the wheel here I&amp;#8217;m going to share some articles I both agree with and have found helpful in the past. WordPress is extremely powerful in it&amp;#8217;s simplicity but is made more powerful by it&amp;#8217;s loyal users. The future of this platform is very exciting as we stretch the possibilities of traditional websites.
First off, we have an excellent ...</description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.jonbishop.com/2009/10/wordpress-as-a-cms/" title="Permanent link to WordPress As a CMS"><img class="post_image aligncenter frame" src="http://www.jonbishop.com/wp-content/uploads/2009/10/wordpresscms.jpg" width="470" height="150" alt="WordPress CMS" /></a>
</p><p>Rather than reinvent the wheel here I&#8217;m going to share some articles I both agree with and have found helpful in the past. WordPress is extremely powerful in it&#8217;s simplicity but is made more powerful by it&#8217;s loyal users. The future of this platform is very exciting as we stretch the possibilities of traditional websites.<span id="more-1531"></span></p>
<p>First off, we have an excellent article by <a href="http://www.devlounge.net/">Devlounge</a> which poses some great questions:</p>
<ul>
<li><a href="http://www.devlounge.net/publishing/things-to-consider-when-using-wordpress-as-a-cms"><strong>Things To Consider When Using WordPress as a CMS</strong></a></li>
</ul>
<p>Next we have a series of articles from <a href="http://www.noupe.com">Noupe</a> convering some excellent WordPress as a CMS plugins, techniques and unique uses:</p>
<ul>
<li><a href="http://www.noupe.com/wordpress/powerful-cms-using-wordpress.html"><strong>101 Techniques for a Powerful CMS using WordPress</strong></a></li>
<li><a href="http://www.noupe.com/wordpress/wordpress-cms-plugins.html"><strong>40 Exceptional “CMS Enabling” WordPress Pl</strong>ugins</a></li>
<li><a href="http://www.noupe.com/wordpress/25-unique-uses-of-wordpress-as-cms.html"><strong>25 Unique uses of WordPress as CMS</strong></a></li>
</ul>
<p>Now WordPress isn&#8217;t the perfect CMS solution right out of the box, so <a href="http://noscope.com">NoScope.com</a> discusses it&#8217;s shortcomings and some possible improvements:</p>
<ul>
<li><a href="http://noscope.com/journal/2009/04/10-changes-to-wordpress-that-would-make-it-a-killer-cms"><strong>10 Changes To Wordpress That Would Make It A Killer CMS</strong></a></li>
</ul>
<p>It would also be nice if you took the time to keep your WordPress CMS somewhat user friendly so we&#8217;ll turn to <a href="http://stylizedweb.com">Stylizedweb</a> for that:</p>
<ul>
<li><a href="http://stylizedweb.com/2008/11/16/10-steps-to-a-client-friendly-wordpress-cms/"><strong>10 Steps to a Client Friendly Wordpress CMS</strong></a></li>
</ul>
<p>And finally, a few lists of plugins that can help you successfully turn your WordPress blog into a fully functional content management system:</p>
<ul>
<li><a href="http://www.jonbishop.com/2009/10/31-wordpress-cms-plugins/"><strong>31 WordPress CMS Plugins</strong></a> via <a href="http://www.jonbishop.com">Jon Bishop (me)</a></li>
<li><a href="http://www.onextrapixel.com/2009/07/17/the-autopsy-of-wordpress-as-cms-with-25-great-wp-plugins-designs/"><strong>The Autopsy Of WordPress As CMS With 25 Great WP Plugins &amp; Designs</strong></a> via <a href="http://www.onextrapixel.com">Onextrapixel</a></li>
<li><a href="http://themeshaper.com/wordpress-cms-plugins-the-bare-minimum/"><strong>Use WordPress As a CMS: Plugins, The Bare Minimum</strong></a> via <a href="http://themeshaper.com">Themeshaper</a></li>
<li><a href="http://blueprintds.com/blog/2008/03/13/top-10-wordpress-cms-plugins/"><strong>Top 10 WordPress CMS Plugins</strong></a> via <a href="http://blueprintds.com">Blueprint Design Studio</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JonBishop?a=lmiDDRbNP98:OiVmATf5yds:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=lmiDDRbNP98:OiVmATf5yds:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=lmiDDRbNP98:OiVmATf5yds:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=lmiDDRbNP98:OiVmATf5yds:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=lmiDDRbNP98:OiVmATf5yds:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=lmiDDRbNP98:OiVmATf5yds:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=lmiDDRbNP98:OiVmATf5yds:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=lmiDDRbNP98:OiVmATf5yds:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=lmiDDRbNP98:OiVmATf5yds:LQx-feW9hR8"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=LQx-feW9hR8" border="0"></img></a>
</div>]]></content:encoded>
			<link>http://www.gooruze.com/members/jonbish/blog/163799/</link>
			<guid isPermaLink="true">http://www.gooruze.com/members/jonbish/blog/163799/</guid>
			<pubDate>Mon, 12 Oct 2009 04:30:35 -0700</pubDate>
		</item>
		<item>
			<title>31 WordPress CMS Plugins</title>
			<author>jonbish</author>
			<description>- http://www.jonbishop.com/2009/10/31-wordpress-cms-plugins/
WordPress is what you make of it. For some it is a simple blogging platform no different than Tumblr - http://www.tumblr.com or Blogger - https://www.blogger.com/. For others it is an all inclusive content management system for their corporate website. Developers continue to recommend WordPress as a CMS because of all the extended functionality contributed by the community as well as it&amp;#8217;s raw ...</description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.jonbishop.com/2009/10/31-wordpress-cms-plugins/" title="Permanent link to 31 WordPress CMS Plugins"><img class="post_image aligncenter frame" src="http://www.jonbishop.com/wp-content/uploads/2009/10/wordpresscmsplugins.jpg" width="470" height="150" alt="31 WordPress Plugins That Turn Your WordPress Blog Into a CMS" /></a>
</p><p>WordPress is what you make of it. For some it is a simple blogging platform no different than <a href="http://www.tumblr.com">Tumblr</a> or <a href="https://www.blogger.com/">Blogger</a>. For others it is an all inclusive content management system for their corporate website. Developers continue to recommend WordPress as a CMS because of all the extended functionality contributed by the community as well as it&#8217;s raw simplicity.</p>
<p>So I decided to put together a list of plugins that can help you turn WordPress into pretty much whatever you want it to be. All plugins link to the WordPress plugin repository and have been updated within the year. This list differs from <a href="http://www.jonbishop.com/2009/07/13-wordpress-plugins-you-need-to-know-exist/">previous</a> <a href="http://www.jonbishop.com/2009/03/awesome-twitter-plugins-for-wordpress/">plugin</a> <a href="http://www.magicomm.biz/blog/apture-finally-closing-the-multimeda-gap-in-wordpress">lists</a> because of it&#8217;s depth and thought that went into comprising the list. I was very careful to not just repeat what <a href="http://www.noupe.com/wordpress/wordpress-cms-plugins.html">other</a> <a href="http://blueprintds.com/blog/2008/03/13/top-10-wordpress-cms-plugins/">blogs</a> <a href="http://www.wpthemesplugin.com/cms-plugins-for-wordpress-part-4/">have</a> <a href="http://themeshaper.com/wordpress-cms-plugins-the-bare-minimum/">posted</a> and hope you find something new and useful here.<span id="more-1537"></span></p>
<h1>SEO</h1>
<h3><a href="http://wordpress.org/extend/plugins/headspace2/">HeadSpace2 SEO</a></h3>
<p style="text-align: center;"><a href="http://wordpress.org/extend/plugins/headspace2/"><img class="size-full wp-image-1562 aligncenter" title="HeadSpace2 SEO" src="http://www.jonbishop.com/wp-content/uploads/2009/10/headspace.jpg" alt="HeadSpace2 SEO" width="470" height="198" /></a></p>
<p>HeadSpace2 is an all-in-one meta-data manager that allows you to fine-tune the SEO potential of your site. The is by far the best SEO plugin I’ve seen for WordPress. Makes it easy to manage meta data across the entire site or for specific pages/posts.</p>
<h3><a href="http://wordpress.org/extend/plugins/redirection/">Redirection</a></h3>
<p>Redirection is a WordPress plugin to manage 301 redirections, keep track of 404 errors, and generally tidy up any loose ends your site may have. This is particularly useful if you are migrating pages from an old website, or are changing the directory of your WordPress installation.</p>
<h1>Image Editing</h1>
<h3><a href="http://wordpress.org/extend/plugins/scissors/">Scissors</a></h3>
<p>This plugin adds cropping, resizing, and rotating functionality to Wordpress’ image upload and management dialogs. Scissors also allows automatic resizing of images when they are uploaded and supports automatic and manual watermarking of images.</p>
<h1>Contact Forms</h1>
<h3><a href="http://wordpress.org/extend/plugins/contact-form-7/">Contact Form 7</a></h3>
<p><a href="http://wordpress.org/extend/plugins/contact-form-7/"></a>Contact Form 7 can manage multiple contact forms, plus you can customize the form and the mail contents flexibly with simple markup. The form supports Ajax-powered submitting, CAPTCHA, Akismet spam filtering and so on.</p>
<p><a href="http://wordpress.org/extend/plugins/mm-forms/"></a></p>
<h3><a href="http://wordpress.org/extend/plugins/mm-forms/">MM-Forms</a></h3>
<p style="text-align: center;"><a href="http://wordpress.org/extend/plugins/mm-forms/"><img class="size-full wp-image-1564 aligncenter" title="MM-Forms" src="http://www.jonbishop.com/wp-content/uploads/2009/10/mmforms.jpg" alt="MM-Forms" width="470" height="198" /></a></p>
<p>MM- Forms is the easiest form builder I’ve come across in the WordPress Plugin directory. It’s simplicity is no testament to how powerful it actually is which makes it the perfect add-on for any WordPress blog.</p>
<h1>Search</h1>
<h3><a href="http://wordpress.org/extend/plugins/relevanssi/">Relevanssi</a></h3>
<p>Relevanssi replaces the basic WordPress search with a partial-match search that sorts the results based on relevance. It is a partial match search, so if user inputs several search terms, the search will find all documents that match even one term, ranking highest those documents that match all search terms.</p>
<h3><a href="http://wordpress.org/extend/plugins/search-everything/">Search Everything</a></h3>
<p>Search Everything expands WordPress’s built in search functionality to also include tags, categories, revisions, images, attachments and more.</p>
<h1>Admin Enhancements</h1>
<h3><a href="http://wordpress.org/extend/plugins/custom-admin-branding/">Custom Admin Branding</a></h3>
<p>The Custom Admin Branding Plugin allows you to re-brand the Wordpress login screen, the admin header and footer with your own custom images.</p>
<h3><a href="http://wordpress.org/extend/plugins/mailpress/">MailPress</a></h3>
<p>With this plugin you will be able to send beautiful and styled html and plain text mails based on dedicated themes and templates for any e-mail notification issued.</p>
<h3><a href="http://wordpress.org/extend/plugins/wp-e-commerce/">WP e-Commerce</a></h3>
<p>The WP e-Commerce shopping cart plugin for WordPress is an elegant easy to use fully featured shopping cart application suitable for selling your products, services, and or fees online.</p>
<h3><a href="http://wordpress.org/extend/plugins/events-calendar/">Events Calendar</a></h3>
<p>Events-Calendar is a versatile replacement for the original calendar included with WordPress adding many useful functions to keep track of your events. The plugin has an easy to use admin section that displays a big readable calendar and lets you add and delete events.</p>
<h3><a href="http://wordpress.org/extend/plugins/magic-fields/">Magic Fields</a></h3>
<p style="text-align: center;"><a href="http://wordpress.org/extend/plugins/magic-fields/"><img class="size-full wp-image-1565 aligncenter" title="Magic Fields" src="http://www.jonbishop.com/wp-content/uploads/2009/10/magicfields.jpg" alt="Magic Fields" width="470" height="198" /></a></p>
<p>Magic Fields allows you to create new &#8220;write fields&#8221; as the author calls them. This basically means you can create additional types of content like pages, posts and links.</p>
<h3><a href="http://wordpress.org/extend/plugins/wp-cms/">WP-CMS</a></h3>
<p>WP-CMS is a plugin for Wordpress that changes the functionality of the Wordpress admin backend to act more like a CMS. The blog functionality becomes optional and the focus is on writing pages to make Wordpress as user friendly for you and your clients as possible.</p>
<h3><a href="http://wordpress.org/extend/plugins/wordpress-admin-quickmenu/">WordPress Admin Quick Menu</a></h3>
<p>This simple WordPress plugin allows users to add quick menu items to the WordPress sidebar. It’s designed to help webmasters have easy access to external pages such as Analytics and shopping carts in their WordPress admin panel.</p>
<h1>User Management</h1>
<h3><a href="http://wordpress.org/extend/plugins/role-scoper/">Role Scoper</a></h3>
<p style="text-align: center;"><a href="http://wordpress.org/extend/plugins/role-scoper/"><img class="size-full wp-image-1566 aligncenter" title="Role Scoper" src="http://www.jonbishop.com/wp-content/uploads/2009/10/RoleScoper.jpg" alt="Role Scoper" width="470" height="198" /></a></p>
<p>Role Scoper is a comprehensive access control solution, giving you CMS-like control of reading and editing permissions. Assign restrictions and roles to specific pages, posts or categories.</p>
<h3><a href="http://wordpress.org/extend/plugins/user-access-manager/">User Access Manager</a></h3>
<p>With the “User Access Manager”-plugin you can manage the access to your posts, pages and files. You only create a user group, put registered users to this and set up the rights for this group. From now on the post/page is only accessible and writable for the specified group. This plugin is useful if you need a member area or a private section at your blog or you want that other people can write at your blog but not everywhere.</p>
<h1>Content Enhancements</h1>
<h3><a href="http://wordpress.org/extend/plugins/tinymce-advanced/">TinyMCE Advanced</a></h3>
<p style="text-align: center;"><a href="http://wordpress.org/extend/plugins/tinymce-advanced/"><img class="size-full wp-image-1567 aligncenter" title="TinyMCE Advanced" src="http://www.jonbishop.com/wp-content/uploads/2009/10/TinyMCE.jpg" alt="TinyMCE Advanced" width="470" height="198" /></a></p>
<p>This plugin adds 15 plugins to TinyMCE: Advanced hr, Advanced Image, Advanced Link, Context Menu, Emotions (Smilies), Date and Time, IESpell, Layer, Nonbreaking, Print, Search and Replace, Style, Table, Visual Characters and XHTML Extras</p>
<h3><a href="http://wordpress.org/extend/plugins/wp-cms-post-control/">WP-CMS Post Control</a></h3>
<p>WP-CMS Post Control builds upon the new controls in WordPress 2.7 to give you complete control over your write options. It not only allows you to hides unwanted items like custom fields, trackbacks, revisions etc. but also gives you a whole lot more control over how WordPress deals with creating content! This helps you use WordPress more like a CMS, alowing you to totally customise what your authors see and us</p>
<h3><a href="http://wordpress.org/extend/plugins/more-fields/">More Fields</a></h3>
<p>More Fields is a WordPress plugin that adds boxes to the Write/Edit page. These boxes contains input fields, so that additional (more) fields can be added to a post. For example, if you write about books, you can add a box where you can enter title and author, etc. The boxes can be placed either to the right or to the left on the Write/Edit page.</p>
<h3><a href="http://wordpress.org/extend/plugins/side-content/">Side Content</a></h3>
<p>Side Content enables you to define a set of widgets which are effectively placeholders. Each one is empty until you assign content to it when editing a page. This enables you to extend the content of the page into the sidebar</p>
<h3><a href="http://wordpress.org/extend/plugins/page-blocks/">Page Blocks</a></h3>
<p>The Page Blocks plugin extends your WordPress pages by combining the dynamic content of widgets with the static content of pages. Up to four “blocks” can be added to each page (two above and two below the page’s content), and widgets can be added to each block in the same way they are added to sidebars</p>
<h1>Page/Post Management</h1>
<h3><a href="http://wordpress.org/extend/plugins/my-page-order/">My Page Order</a></h3>
<p style="text-align: center;"><a href="http://wordpress.org/extend/plugins/my-page-order/"><img class="size-full wp-image-1568 aligncenter" title="My Page Order" src="http://www.jonbishop.com/wp-content/uploads/2009/10/mypageorder.jpg" alt="My Page Order" width="470" height="198" /></a></p>
<p>My Page Order allows you to set the order of pages through a drag and drop interface.</p>
<h3><a href="http://wordpress.org/extend/plugins/dashboard-pages/">Dashboard Pages</a></h3>
<p>Rather than have a majority of the dashboard widgets focused on new blog posts and comments it puts the sites page listing front and center in the dashboard for easier and quicker content management.</p>
<h3><a href="http://wordpress.org/extend/plugins/pagemash/">pageMash</a></h3>
<p>Customise the order your pages are listed in and manage the parent structure with this simple ajax drag-and-drop administrative interface with an option to toggle the page to be hidden from output. Great tool to quickly re-arrange your page menus.</p>
<h1>Navigation</h1>
<h3><a href="http://wordpress.org/extend/plugins/wordpress-navigation-list-plugin-navt/">Wordpress Navigation List Plugin NAVT</a></h3>
<p>The plugin gives you the ability to create unique site navigation from your pages, categories and users using a Drag ‘n Drop Interface; arrange the items within a group in any arbitrary order. Navigation groups may be composed of any combination of pages, categories, Authors, (Editors, Contributors, Subscribers), internal/external links and list dividers.</p>
<h3><a href="http://wordpress.org/extend/plugins/multi-level-navigation-plugin/">Multi-level Navigation Plugin</a></h3>
<p>Adds an SEO friendly, accessible dropdown/flyout/slider menu to your WordPress blog</p>
<h1>Core Enhancements</h1>
<h3><a href="http://wordpress.org/extend/plugins/wp-super-cache/">WP Super Cache</a></h3>
<p>This plugin generates static html files from your dynamic WordPress blog. After a html file is generated your webserver will serve that file instead of processing the comparatively heavier and more expensive WordPress PHP scripts.</p>
<h1>Assorted CMS Solutions</h1>
<h3><a href="http://wordpress.org/extend/plugins/sitepress-multilingual-cms/">WPML Multilingual CMS</a></h3>
<p style="text-align: center;"><a href="http://wordpress.org/extend/plugins/sitepress-multilingual-cms/"><img class="size-full wp-image-1569 aligncenter" title="WPML Multilingual CMS" src="http://www.jonbishop.com/wp-content/uploads/2009/10/wpml.jpg" alt="WPML Multilingual CMS" width="470" height="198" /></a></p>
<p>WPML makes it possible to turn WordPress blogs multilingual in a few minutes with no knowledge of PHP or WordPress. Its advanced features allow professional web developers to build full multilingual websites.</p>
<h3><a href="http://wordpress.org/extend/plugins/pods/">Pods CMS</a></h3>
<p>Pods is a CMS framework that lets you create, manage, and display your own content types. Don’t bother hacking blog posts into becoming something they’re not. With Pods, create entirely new data structures with only the fields you need. Like Drupal CCK, you can set up relationships, allowing for a whole new level of interconnectedness.</p>
<h3><a href="http://wordpress.org/extend/plugins/fresh-page/">Flutter</a></h3>
<p>Flutter is a feature rich WordPress CMS plugin that focuses on easy templating for the developer and simplifies content management for the admin by creating custom write panels that can be fully customized (radio buttons, file uploads, image uploads, checkboxes, etc).</p>
<h3><a href="http://wordpress.org/extend/plugins/ryans-simple-cms/">Ryans Simple CMS</a></h3>
<p>Converts your WordPress admin panel into a simple CMS. This is aimed at web designers who want to provide a simple administration  panel for their clients to update basic static websites.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JonBishop?a=1rUmdbexI-k:6inajK3hqw0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=1rUmdbexI-k:6inajK3hqw0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=1rUmdbexI-k:6inajK3hqw0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=1rUmdbexI-k:6inajK3hqw0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=1rUmdbexI-k:6inajK3hqw0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=1rUmdbexI-k:6inajK3hqw0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=1rUmdbexI-k:6inajK3hqw0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=1rUmdbexI-k:6inajK3hqw0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=1rUmdbexI-k:6inajK3hqw0:LQx-feW9hR8"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=LQx-feW9hR8" border="0"></img></a>
</div>]]></content:encoded>
			<link>http://www.gooruze.com/members/jonbish/blog/163129/</link>
			<guid isPermaLink="true">http://www.gooruze.com/members/jonbish/blog/163129/</guid>
			<pubDate>Thu, 08 Oct 2009 04:00:15 -0700</pubDate>
		</item>
		<item>
			<title>Tailoring Your Blog To Your Readers</title>
			<author>jonbish</author>
			<description>- http://www.jonbishop.com/2009/10/tailoring-your-blog-to-your-readers/
Ever stop to think about who is reading your blog? No one knows your readers better than you, so what are you doing about it?
Your blog should really evolve right along side you. A few things to consider as you learn more about your readers are:
Is it easy for readers to contact you? Can you make it easier?
Is ...</description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.jonbishop.com/2009/10/tailoring-your-blog-to-your-readers/" title="Permanent link to Tailoring Your Blog To Your Readers"><img class="post_image aligncenter frame" src="http://www.jonbishop.com/wp-content/uploads/2009/10/tailor.jpg" width="470" height="150" alt="Tailor Your Blog To Your Readers" /></a>
</p><p>Ever stop to think about who is reading your blog? No one knows your readers better than you, so what are you doing about it?</p>
<p>Your blog should really evolve right along side you. A few things to consider as you learn more about your readers are:</p>
<ul>
<li>Is it easy for readers to contact you? Can you make it easier?</li>
<li>Is it easy for readers to find you on other networks, like on Twitter?</li>
<li>Is it easy for you readers to find some of your more popular articles?</li>
<li>Do you offer anything worth promoting to your sidebar or home page?</li>
<li>Are people using your search and are they finding what they&#8217;re looking for?</li>
<li>Can people easily subscribe to your RSS feed?</li>
</ul>
<p>Keeping your content fresh can go beyond just posting regularly. Keeping your blog fresh as a whole is an easy way to keep people interested. <a href="http://www.jonbishop.com/2009/03/woah-i-cant-read-your-wordpress-blog/">Just remember not to go overboard</a>.</p>
<h3>How Have I Put This Into Action?</h3>
<p><span id="more-217"></span><br />
First of all I acknowledged the fact that certain posts perform better on some days than others due to trending topics on Twitter and in social media. So I added a &#8216;Popular Posts&#8217; section in my sidebar that shows the most popular posts over the past 2 days. This is just an easy way to take advantage of the spikes of traffic I get from social media by taking full advantage of a topics popularity within a time frame.</p>
<p>I also added buttons that link directly to the <a href="http://www.jonbishop.com/downloads/">WordPress plugins I created</a> from the sidebar because I recognize that this is one of the main reasons people visit my site and I want an easy way for them to find what they&#8217;re looking for.</p>
<p>Speaking of my plugins, my <a href="http://www.jonbishop.com/socialize/">Socialize plugin</a> allows me to selectively add social bookmarking buttons to my posts. After awhile it&#8217;s pretty easy to see which button are being used more than others and with my plugin I can easily go in and remove unneeded buttons. This is just to increase the overall user experience as well as to encourage more shares on the services that are already doing well.</p>
<p>And finally, I use the feedback of my readers through comments and on Twitter to come up with new topic ideas. It&#8217;s probably my main source of inspiration aside from my spontaneous brain bursts.</p>
<h3>How Can You Put This Into Action?</h3>
<p>Ask you readers! Seriously. If you can&#8217;t figure out what needs to be done through previous interactions with your reader base why not formulate a post asking for ideas and direction. Don&#8217;t just let your blog become a place to spill your thoughts, let your readers milk your brain for all it&#8217;s worth &#8230; maybe that&#8217;s where the gold is.</p>
<p>- Photo by <a title="Link to Diogo Martins.'s photostream" rel="dc:creator cc:attributionURL" href="http://www.flickr.com/photos/quarenta/">Diogo Martins.</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JonBishop?a=_R6CtsG6J4I:3Em9MFwpnJw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=_R6CtsG6J4I:3Em9MFwpnJw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=_R6CtsG6J4I:3Em9MFwpnJw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=_R6CtsG6J4I:3Em9MFwpnJw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=_R6CtsG6J4I:3Em9MFwpnJw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=_R6CtsG6J4I:3Em9MFwpnJw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=_R6CtsG6J4I:3Em9MFwpnJw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=_R6CtsG6J4I:3Em9MFwpnJw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=_R6CtsG6J4I:3Em9MFwpnJw:LQx-feW9hR8"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=LQx-feW9hR8" border="0"></img></a>
</div>]]></content:encoded>
			<link>http://www.gooruze.com/members/jonbish/blog/162968/</link>
			<guid isPermaLink="true">http://www.gooruze.com/members/jonbish/blog/162968/</guid>
			<pubDate>Wed, 07 Oct 2009 05:00:45 -0700</pubDate>
		</item>
		<item>
			<title>Creating A Video Section On Your WordPress Blog</title>
			<author>jonbish</author>
			<description>- http://www.jonbishop.com/2009/10/creating-a-video-section-on-your-wordpress-blog/
Awhile back I decided to start posting videos on my blog. Once I had a few videos up I began to rethink my approach. Ultimately I wanted to prevent videos from showing up where normal posts are displayed and instead display my most recent video in the sidebar.
To do this, I would need to:
Suppress all video posts from being displayed ...</description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.jonbishop.com/2009/10/creating-a-video-section-on-your-wordpress-blog/" title="Permanent link to Creating A Video Section On Your WordPress Blog"><img class="post_image aligncenter frame" src="http://www.jonbishop.com/wp-content/uploads/2009/10/video_embed_wordpress.jpg" width="470" height="150" alt="Adding Video To Your Sidebar" /></a>
</p><p>Awhile back I decided to start posting videos on my blog. Once I had a few videos up I began to rethink my approach. Ultimately I wanted to prevent videos from showing up where normal posts are displayed and instead display my most recent video in the sidebar.</p>
<p>To do this, I would need to:</p>
<ul>
<li>Suppress all video posts from being displayed with other posts</li>
<li>Create an archive of all video posts</li>
<li>Resize and place my most recent video in the sidebar</li>
</ul>
<p><strong>The first step</strong> was pretty easy. I just created a new category called &#8220;Video Post&#8221; and assigned it to all of my video posts. This would become a fairly intuitive list of videos people could access at their will.<span id="more-1490"></span></p>
<p><strong>Next</strong> I wanted to remove all video posts from being displayed among other posts on the home page. However, I still wanted my videos to be displayed in RSS feeds as well as archives and search pages. To do this, I just modified the default WordPress query used to pull the most recent posts by placing the following code before &#8220;The Loop&#8221;.</p>
<div class="geshi no php">
<div class="head">//Hide a category from the home page</div>
<ol>
<li class="li1">
<div class="de1"><span class="kw3">global</span> <span class="re1">$wp_query</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1">query_posts<span class="br0">&#40;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="kw3">array_merge</span><span class="br0">&#40;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw3">array</span><span class="br0">&#40;</span><span class="st0">&#39;cat&#39;</span> <span class="sy0">=&gt;</span> <span class="nu0">-66</span><span class="br0">&#41;</span><span class="sy0">,</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="re1">$wp_query</span><span class="sy0">-&gt;</span><span class="me1">query</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#41;</span><span class="sy0">;</span></div>
</li>
</ol>
</div>
<p><strong>Be sure to change</strong> &#8216;-66&#8242; to the id of whatever category you are trying to hide. <a href="http://wordpress.org/support/topic/226313">How do I find the category IDs?</a></p>
<p>Also, if you are not sure where the WordPress Loop begins, it is usually located inside of index.php in your theme folder and starts with:</p>
<div class="geshi no php">
<div class="head">//Beginning of the WordPress Loop located in index.php of theme</div>
<ol>
<li class="li1">
<div class="de1"><span class="kw1">if</span> <span class="br0">&#40;</span> have_posts<span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#41;</span> <span class="sy0">:</span> <span class="kw1">while</span> <span class="br0">&#40;</span> have_posts<span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#41;</span> <span class="sy0">:</span> the_post<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span></div>
</li>
</ol>
</div>
<p><strong>The last step</strong> is to display my most recent video in the sidebar. To do this I decided my best course of action was to save the embed code of my videos into a custom field as well as within the content of the post. This would allow me to easily pull the embed code and I would still be able to add text along with my video within the content.</p>
<p style="text-align: center;"><img class="size-full wp-image-1502 aligncenter" title="Create custom field for embed code" src="http://www.jonbishop.com/wp-content/uploads/2009/10/video_embed.jpg" alt="Create custom field for embed code" width="470" height="100" /></p>
<p>In the example below I used the custom field &#8216;embed&#8217; in my posts. Just paste this code in your sidebar where you would like your video to be displayed.</p>
<div class="geshi no php">
<div class="head">//Display resized most recent video along with link to previous video</div>
<ol>
<li class="li1">
<div class="de1"><span class="kw2">&lt;?PHP</span></div>
</li>
<li class="li1">
<div class="de1"><span class="re1">$firstPost</span> <span class="sy0">=</span> <span class="kw2">true</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1">query_posts<span class="br0">&#40;</span><span class="st0">&#39;cat=66&amp;showposts=2&#39;</span><span class="br0">&#41;</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">while</span> <span class="br0">&#40;</span>have_posts<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="br0">&#41;</span> <span class="sy0">:</span> the_post<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="kw1">if</span><span class="br0">&#40;</span><span class="re1">$firstPost</span><span class="br0">&#41;</span><span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="re1">$firstPost</span> <span class="sy0">=</span> <span class="kw2">false</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="re1">$key</span> <span class="sy0">=</span> <span class="st0">&#39;embed&#39;</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="re1">$width</span> <span class="sy0">=</span> <span class="st0">&#39;200&#39;</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="re1">$height</span> <span class="sy0">=</span> <span class="st0">&#39;190&#39;</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw3">global</span> <span class="re1">$post</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="re1">$custom_field</span> <span class="sy0">=</span> get_post_meta<span class="br0">&#40;</span><span class="re1">$post</span><span class="sy0">-&gt;</span><span class="me1">ID</span><span class="sy0">,</span> <span class="re1">$key</span><span class="sy0">,</span> <span class="kw2">true</span><span class="br0">&#41;</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw1">if</span> <span class="br0">&#40;</span><span class="re1">$custom_field</span><span class="br0">&#41;</span> <span class="br0">&#123;</span> </div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;<span class="co1">// Set values</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;<span class="re1">$width</span> <span class="sy0">=</span> <span class="st0">&#39;width=&quot;&#39;</span><span class="sy0">.</span><span class="re1">$width</span><span class="sy0">.</span><span class="st0">&#39;&quot;&#39;</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;<span class="re1">$height</span> <span class="sy0">=</span> <span class="st0">&#39;height=&quot;&#39;</span><span class="sy0">.</span><span class="re1">$height</span><span class="sy0">.</span><span class="st0">&#39;&quot;&#39;</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;<span class="re1">$custom_field</span> <span class="sy0">=</span> <span class="kw3">preg_replace</span><span class="br0">&#40;</span> <span class="st0">&#39;/width=&quot;[^&quot;]+&quot;/&#39;</span> <span class="sy0">,</span> <span class="re1">$width</span> <span class="sy0">,</span> <span class="re1">$custom_field</span> <span class="br0">&#41;</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;<span class="re1">$custom_field</span> <span class="sy0">=</span> <span class="kw3">preg_replace</span><span class="br0">&#40;</span> <span class="st0">&#39;/height=&quot;[^&quot;]+&quot;/&#39;</span> <span class="sy0">,</span> <span class="re1">$height</span> <span class="sy0">,</span> <span class="re1">$custom_field</span> <span class="br0">&#41;</span><span class="sy0">;</span> </div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;<span class="kw3">echo</span> <span class="st0">&#39;&lt;li class=&quot;widget widget_recent_videos&quot; id=&quot;recent-videos&quot;&gt;&lt;h3&gt;Videos&lt;/h3&gt;&#39;</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;<span class="kw2">?&gt;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;<span class="sy0">&lt;</span>ul<span class="sy0">&gt;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;<span class="sy0">&lt;</span>li style<span class="sy0">=</span><span class="st0">&quot;text-align:center;&quot;</span><span class="sy0">&gt;&lt;</span>strong<span class="sy0">&gt;&lt;</span>a href<span class="sy0">=</span><span class="st0">&quot;&lt;?=get_permalink(); ?&gt;&quot;</span><span class="sy0">&gt;&lt;</span>?<span class="sy0">=</span>get_the_title<span class="br0">&#40;</span><span class="re1">$post</span><span class="sy0">-&gt;</span><span class="me1">ID</span><span class="br0">&#41;</span><span class="sy0">;</span> ?<span class="sy0">&gt;&lt;/</span>a<span class="sy0">&gt;&lt;/</span>strong<span class="sy0">&gt;&lt;/</span>li<span class="sy0">&gt;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;<span class="kw2">&lt;?</span><span class="sy0">=</span><span class="re1">$custom_field</span><span class="sy0">;</span> <span class="kw2">?&gt;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="kw2">&lt;?php</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="br0">&#125;</span> <span class="kw1">else</span> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="kw2">?&gt;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="sy0">&lt;</span>ul<span class="sy0">&gt;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="sy0">&lt;</span>li<span class="sy0">&gt;</span>Next Video<span class="sy0">:</span> <span class="sy0">&lt;</span>a href<span class="sy0">=</span><span class="st0">&quot;&lt;?=get_permalink(); ?&gt;&quot;</span><span class="sy0">&gt;&lt;</span>?<span class="sy0">=</span>get_the_title<span class="br0">&#40;</span><span class="re1">$post</span><span class="sy0">-&gt;</span><span class="me1">ID</span><span class="br0">&#41;</span><span class="sy0">;</span> ?<span class="sy0">&gt;&lt;/</span>a<span class="sy0">&gt;&lt;/</span>li<span class="sy0">&gt;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="sy0">&lt;/</span>ul<span class="sy0">&gt;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="sy0">&lt;/</span>li<span class="sy0">&gt;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="kw2">&lt;?php</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">endwhile</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">?&gt;</span></div>
</li>
</ol>
</div>
<p>You will notice I also included a link to my last video however you can remove this or replace it with a link to your video archive. This code should work with most video embed codes. Be sure to change the width and height so everything fits nicely into your sidebar.</p>
<p>And that&#8217;s it. Now all you need to do when adding a new video post is:</p>
<ol>
<li>Assign the post to your video category</li>
<li>Paste your embed code into the content and your &#8216;embed&#8217; custom field</li>
<li>And Publish Your Post!</li>
</ol>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JonBishop?a=ia348Pf3EFQ:WCumF0_GHm0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=ia348Pf3EFQ:WCumF0_GHm0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=ia348Pf3EFQ:WCumF0_GHm0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=ia348Pf3EFQ:WCumF0_GHm0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=ia348Pf3EFQ:WCumF0_GHm0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=ia348Pf3EFQ:WCumF0_GHm0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=ia348Pf3EFQ:WCumF0_GHm0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=ia348Pf3EFQ:WCumF0_GHm0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=ia348Pf3EFQ:WCumF0_GHm0:LQx-feW9hR8"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=LQx-feW9hR8" border="0"></img></a>
</div>]]></content:encoded>
			<link>http://www.gooruze.com/members/jonbish/blog/162713/</link>
			<guid isPermaLink="true">http://www.gooruze.com/members/jonbish/blog/162713/</guid>
			<pubDate>Mon, 05 Oct 2009 12:40:35 -0700</pubDate>
		</item>
		<item>
			<title>Why Should College Students Care About Twitter?</title>
			<author>jonbish</author>
			<description>- http://www.jonbishop.com/2009/09/why-should-college-students-care-about-twitter/
Facebook seems to be the king of social media for college students. One could easily argue that the demographics of the service - http://www.istrategylabs.com/wp-content/uploads/2009/01/facebook_demographics_statistics_2009.png support this. So why should they also care about Twitter?

Twitter and Facebook seem to fit the mold of Private vs Public. Facebook is a great means of keeping up with friends and family while ...</description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.jonbishop.com/2009/09/why-should-college-students-care-about-twitter/" title="Permanent link to Why Should College Students Care About Twitter?"><img class="post_image aligncenter frame" src="http://www.jonbishop.com/wp-content/uploads/2009/09/college.jpg" width="470" height="150" alt="Should College Students Use Twitter?" /></a>
</p><p>Facebook seems to be the king of social media for college students. One could easily argue that the <a href="http://www.istrategylabs.com/wp-content/uploads/2009/01/facebook_demographics_statistics_2009.png">demographics of the service</a> support this. So why should they also care about Twitter?<br />
<span id="more-1440"></span><br />
Twitter and Facebook seem to fit the mold of Private vs Public. Facebook is a great means of keeping up with friends and family while sharing links, photos and seemingly random thoughts. The hump most new Twitterers (aka Tweeps) have to get over is</p>
<blockquote><p>Why should I care about the seemingly random thoughts of complete strangers?</p></blockquote>
<p>To me, its the same reason why you would go out to a bar over staying home with friends &#8230; you are interested in meeting new people. Twitter is one of the <a href="http://blog.nielsen.com/nielsenwire/online_mobile/social-media-stats-myspace-music-growing-twitters-big-move/">fastest growing social media sites</a> out there and is the best medium for conversing with new like minded individuals. This mentality coincides with one of Twitter&#8217;s most useful functions. <strong>Tapping into the buzz of things that interest us.</strong> Twitter&#8217;s search capabilities in collaboration with it&#8217;s complete simplicity make it the perfect platform for crowd sourcing thoughts, ideas, questions and <a href="http://www.jonbishop.com/2009/07/tools-and-tips-for-answering-questions-on-twitter/">answers</a>.</p>
<p><strong><em>For example</em></strong>: If one were interested in Mixed Martial Arts (MMA) they could follow <a id="aptureLink_be8JMTrHcF" href="http://tweepsearch.com/search?query=mma&amp;commit=Do+Your+Thing!">the most popular MMA tweeps</a> or even the <a href="http://twitter.grader.com/search?Term=mma">MMA tweeps with the most interesting things to say</a>. You could also set up a Twitter search for <a href="http://search.twitter.com/search?q=MMA">all mentions of MMA</a> so you can jump in on the discussions and get the latest MMA news in REAL TIME.</p>
<p><strong>You see, it&#8217;s not about the random thoughts of others but the thoughts of others that are relevant to you.</strong></p>
<p>So what kinds of things should you be Tweeting?</p>
<p>That is completely up to you but the best way to learn is to watch others you enjoy reading. The most resourceful way to use Twitter is to <a href="http://www.jonbishop.com/2009/07/twitter-replies/">reply and communicate with others</a>. Some people like to use Twitter to show off their own accomplishments (like the completion of a new blog post or the creation of a new piece of art). Others use <a href="http://www.magicomm.biz/blog/printer-tweet-4-what-should-i-be-tweeting">Twitter to support their business</a> by proving their expertise through helping others in need. I myself use it mostly to talk with others I&#8217;ve met through Twitter &#8230; simple enough. <a href="http://www.collegedegrees.com/blog/2008/06/04/25-twitter-tips-for-college-students/">Here is a list of 25 Twitter tips for college students</a>.</p>
<p>Twitter is whatever you make of it and can be extremely powerful despite its apparent simplicity. The best way to learn about it is to just dive in. It&#8217;s always nice to know someone too, so feel free to reach out to me (@<a id="aptureLink_QvLIewYLZP" href="http://twitter.com/JonDBishop">jondbishop</a> ) and I&#8217;ll do my best to guide you in the right direction to be sure you get the most out of it.</p>
<p>- Photo by <a title="Link to tanakawho's photostream" rel="dc:creator cc:attributionURL" href="http://www.flickr.com/photos/28481088@N00/"><strong>tanakawho</strong></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JonBishop?a=NboKFzrYsYw:pVw9MnXu8sw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=NboKFzrYsYw:pVw9MnXu8sw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=NboKFzrYsYw:pVw9MnXu8sw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=NboKFzrYsYw:pVw9MnXu8sw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=NboKFzrYsYw:pVw9MnXu8sw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=NboKFzrYsYw:pVw9MnXu8sw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=NboKFzrYsYw:pVw9MnXu8sw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=NboKFzrYsYw:pVw9MnXu8sw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=NboKFzrYsYw:pVw9MnXu8sw:LQx-feW9hR8"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=LQx-feW9hR8" border="0"></img></a>
</div>]]></content:encoded>
			<link>http://www.gooruze.com/members/jonbish/blog/159871/</link>
			<guid isPermaLink="true">http://www.gooruze.com/members/jonbish/blog/159871/</guid>
			<pubDate>Thu, 17 Sep 2009 09:33:34 -0700</pubDate>
		</item>
		<item>
			<title>Where’s The Line Between Opinion and Judgment?</title>
			<author>jonbish</author>
			<description>- http://www.jonbishop.com/2009/09/wheres-the-line-between-opinion-and-judgement/
We tread the line between opinion - http://en.wikipedia.org/wiki/Opinion and judgment - http://en.wikipedia.org/wiki/Judgment a lot in social media. Some are quick to call out others as being &amp;#8220;too judgmental&amp;#8221; when their own beliefs or opinions are being challenged - http://www.jonbishop.com/2009/06/why-cant-we-all-just-get-along/. There&amp;#8217;s no point in getting all bent out of shape over something as seemingly mundane as text on a ...</description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.jonbishop.com/2009/09/wheres-the-line-between-opinion-and-judgement/" title="Permanent link to Where&#8217;s The Line Between Opinion and Judgment?"><img class="post_image aligncenter frame" src="http://www.jonbishop.com/wp-content/uploads/2009/09/judge2.jpg" width="470" height="150" alt="Opinion vs Judgment" /></a>
</p><p>We tread the line between <a href="http://en.wikipedia.org/wiki/Opinion">opinion</a> and<a href="http://en.wikipedia.org/wiki/Judgment"> judgment</a> a lot in social media. Some are quick to call out others as being <a href="http://www.jonbishop.com/2009/06/why-cant-we-all-just-get-along/">&#8220;too judgmental&#8221; when their own beliefs or opinions are being challenged</a>. There&#8217;s no point in getting all bent out of shape over something as seemingly mundane as text on a screen, especially when we are putting our thoughts out there to be judged in the first place. Yet there is still some question as to how one should present themselves in a way that is both unaggressive and adds to the conversation.<br />
<span id="more-673"></span><br />
The only difference between a judgment and an opinion is the existence of evidence to support an opinion therefore making it final or absolute. There is nothing wrong with a judgment of this type, however, the problem arises when we judge others in an aggressive tone.</p>
<blockquote><p><strong>Opinion</strong>: You might get more readers if you improved on the quality of your writing.<br />
<strong>Judgement</strong>: You are not getting a lot of readers because of the quality of your writing.<br />
<strong>Aggressive Judgement</strong>: Your content sucks so you are not getting any readers.</p></blockquote>
<p>Opinions usually leave room for error in your thought process therefore leaving the recipient a little more at ease. Sometimes it&#8217;s as easy as adding words like <em>might</em>,<em> i think</em>, <em>probably</em>, <em>maybe, etc</em>. It seems kind of silly, but in a space where it&#8217;s so hard to express tone, it&#8217;s important to express these emotions through words.</p>
<p>So, in my opinion, the line between opinion and judgment is when we use an aggressive, absolute tone while expressing one&#8217;s thoughts. I personally don&#8217;t have a problem with judgments because I can see them for what they are &#8230; opinions expressed as facts. For the rest of the world, accept the fact that you might not know everything and leave some room for doubt. Doubt is ultimately what pushes us to explore further into our minds, and is there anything wrong with that?</p>
<p>- Photo by <a title="Link to ★ spunkinator's photostream" rel="dc:creator cc:attributionURL" href="http://www.flickr.com/photos/spunkinator/">★ spunkinator</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JonBishop?a=qWXDCkET_MI:qJgCUmXvIQI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=qWXDCkET_MI:qJgCUmXvIQI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=qWXDCkET_MI:qJgCUmXvIQI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=qWXDCkET_MI:qJgCUmXvIQI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=qWXDCkET_MI:qJgCUmXvIQI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=qWXDCkET_MI:qJgCUmXvIQI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=qWXDCkET_MI:qJgCUmXvIQI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=qWXDCkET_MI:qJgCUmXvIQI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=qWXDCkET_MI:qJgCUmXvIQI:LQx-feW9hR8"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=LQx-feW9hR8" border="0"></img></a>
</div>]]></content:encoded>
			<link>http://www.gooruze.com/members/jonbish/blog/158633/</link>
			<guid isPermaLink="true">http://www.gooruze.com/members/jonbish/blog/158633/</guid>
			<pubDate>Thu, 10 Sep 2009 10:35:31 -0700</pubDate>
		</item>
		<item>
			<title>Why Is Thesis Such A Great Premium Wordpress Theme?</title>
			<author>jonbish</author>
			<description>- http://www.jonbishop.com/2009/09/why-is-thesis-such-a-great-premium-wordpress-theme/
There are 3 main reasons I love Thesis - http://diythemes.com/?a_aid=jonbish and why I use it for my blog;
SEO
Awesome Layout
It&amp;#8217;s constantly being optimized

I guess what originally hooked me was the fact that most of the blogs I was reading by professionals within my industry were already on the Thesis theme - http://diythemes.com/?a_aid=jonbish. You&amp;#8217;ve got Chris Brogan - http://www.chrisbrogan.com (who ...</description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.jonbishop.com/2009/09/why-is-thesis-such-a-great-premium-wordpress-theme/" title="Permanent link to Why Is Thesis Such A Great Premium Wordpress Theme?"><img class="post_image aligncenter frame" src="http://www.jonbishop.com/wp-content/uploads/2009/09/thesis.jpg" width="470" height="150" alt="Best Premium Wordpress Theme" /></a>
</p><p>There are 3 main reasons I love <a href="http://diythemes.com/?a_aid=jonbish">Thesis</a> and why I use it for my blog;</p>
<ul>
<li><strong>SEO</strong></li>
<li><strong>Awesome Layout</strong></li>
<li><strong>It&#8217;s constantly being optimized</strong></li>
</ul>
<p>I guess what originally hooked me was the fact that most of the blogs I was reading by professionals within my industry were already on the <a href="http://diythemes.com/?a_aid=jonbish">Thesis theme</a>. You&#8217;ve got <a href="http://www.chrisbrogan.com">Chris Brogan</a> (<a href="http://www.chrisbrogan.com/thesis-is-my-favorite-premium-wordpress-theme/">who wrote about it here</a>), <a href="http://www.twitip.com/">Darren Rowse</a> <a href="http://www.problogger.net/archives/2009/05/01/thesis-wordpress-theme-version-15-launches/">(who wrote about it here</a>), <a href="http://www.copyblogger.com">Brian Clark</a> (<a href="http://www.copyblogger.com/thesis-theme-wordpress/">who wrote about i here</a>), <a href="http://www.mattcutts.com/blog/">Matt Cutts</a> and <a title="Industry professionals using Thesis WordPress theme" href="http://diythemes.com/?a_aid=jonbish#thumb_area">more</a>.</p>
<h3>So now a little about what makes it so great.</h3>
<p><span id="more-1257"></span><br />
<a href="http://twitter.com/MattCutts">Matt Cutts</a> <a href="http://www.mattcutts.com/blog/seo-for-bloggers/">recently spoke at WordCamp San Francisco 2009</a> where he discussed WordPress&#8217;s ability to satisfy 90% of your websites SEO. WordPress itself takes care of the obvious things like pretty URLs, syndication, interlinking pages, hiding duplicate content, etc. However, one thing WordPress does not control is the layout of the theme you are using. This is where Thesis comes in and satisfies several immediate needs:</p>
<ul>
<li>Cleanly laid out HTML for easy indexing by search engines</li>
<li>Extra fields that allow editing of header meta on a page to page basis</li>
<li>Clean, easy to read typography</li>
</ul>
<h3>But if everyone had the same theme, wouldn&#8217;t that get kind of dull?</h3>
<p>Sure, if everyone was using the same settings. Thesis comes with <a href="http://www.jonbishop.com/wp-content/uploads/2009/09/Thesis_settings1.jpg">two new settings pages</a> under the appearance tab of your admin panel. You can move sidebars around, change major content area, and control all your fonts across the entire site.</p>
<p>Now while every other theme out there may eventually become outdated, I know I&#8217;m safe with Thesis because they are consistently releasing new versions. Their unique method for customizing the theme allows for easy upgrades and a lot more control. They have even added several new wordpress hooks that <a href="http://wordpress.org/extend/plugins/search.php?q=thesis">developers have already begun integrating into their plugins</a> for easy one-step setup.</p>
<h3>But I like it for the cutting edge look and feel</h3>
<p>This was probably the culprit for the themes instant appeal in my eyes. Out of the box, the home page of the theme allows you to display excerpts in a slick boxlike fashion. You also get a dynamic content area in your sidebar that you can change on a post to post basis, great for promoting services relevant to the content your readers are viewing. Finally, they&#8217;ve added options to your posts and pages that allow you to display images in your posts that are automatically resized for the excerpts on the home page.</p>
<p>I&#8217;ve never promoted a product on my blog because I feel money can dilute an honest review by making it slightly more biased in any one direction. However, with Thesis I will make an exception. Ever since I&#8217;ve started using it I&#8217;ve been able to focus a lot more on content creation and less about SEO and blog maintenance. I very much look forward to future releases and hope you can too.</p>
<p><em>Disclaimer: All links to <a href="http://diythemes.com/?a_aid=jonbish">Thesis</a></em><em> from this blog are an affiliate link. If you purchase the theme through one of these links I will receive a percentage as commission. This is the first (and probably only) product I would ever endorse for money.</em></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JonBishop?a=nmFW_-ybL7s:8m5vtBubplU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=nmFW_-ybL7s:8m5vtBubplU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=nmFW_-ybL7s:8m5vtBubplU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=nmFW_-ybL7s:8m5vtBubplU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=nmFW_-ybL7s:8m5vtBubplU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=nmFW_-ybL7s:8m5vtBubplU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=nmFW_-ybL7s:8m5vtBubplU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=nmFW_-ybL7s:8m5vtBubplU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=nmFW_-ybL7s:8m5vtBubplU:LQx-feW9hR8"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=LQx-feW9hR8" border="0"></img></a>
</div>]]></content:encoded>
			<link>http://www.gooruze.com/members/jonbish/blog/157248/</link>
			<guid isPermaLink="true">http://www.gooruze.com/members/jonbish/blog/157248/</guid>
			<pubDate>Thu, 03 Sep 2009 07:25:28 -0700</pubDate>
		</item>
		<item>
			<title>Facebook Privacy And The Work/Life Balance</title>
			<author>jonbish</author>
			<description>- http://www.jonbishop.com/2009/09/facebook-privacy-and-the-work-life-balance/
One of my posts about Facebook privacy was featured on Brazen Careerist - http://www.brazencareerist.com/2009/08/31/please-control-your-facebook-image and I think it brought forth some interesting discussion. There are those among us who believe my generation is a little out of hand with their Facebook usage. That our party pics and crazy wall post antics could prevent us from getting choice jobs ...</description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.jonbishop.com/2009/09/facebook-privacy-and-the-work-life-balance/" title="Permanent link to Facebook Privacy And The Work/Life Balance"><img class="post_image aligncenter frame" src="http://www.jonbishop.com/wp-content/uploads/2009/09/facebook-privacy.jpg" width="470" height="150" alt="Facebook Privacy And The Work Life Balance" /></a>
</p><p>One of <a href="http://www.brazencareerist.com/2009/08/31/please-control-your-facebook-image">my posts about Facebook privacy was featured on Brazen Careerist</a> and I think it brought forth some interesting discussion. There are those among us who believe my generation is a little out of hand with their Facebook usage. That our party pics and crazy wall post antics could prevent us from getting choice jobs in the future or even affect our status with our current employers. We even hear horror stories of <a href="http://www.mainstreet.com/article/career/work/life-balance/fired-facebook">people losing jobs over Facebook</a> and <a href="http://www.smh.com.au/technology/technology-news/how-my-big-fat-greek-wedding-went-viral-20090623-cuny.html">private events being made public</a>. But are these problems directly related to Facebook or could they have been avoided altogether? Yes I do think <a href="http://www.jonbishop.com/2009/08/please-control-your-facebook-image/">we should be aware of the content we are making public</a> however I think it is becoming less of a problem than it was in the past.<br />
<span id="more-1235"></span><br />
First you need to look at the status of you work/life balance. Do you live to work or do you work to live. Furthermore are you happy with your life and with your job. Now would you be happy at a job that monitored your Facebook profile for proof that you were on the straight and narrow. I personally would not. I also don&#8217;t believe that the way I present myself in a social environment should have any bearing on my professional capabilities.</p>
<p>I think <a href="http://twitter.com/shandoo">Saad Handoo</a> summed it up quite nicely in a comment to my post on Brazen Careerist. He says:</p>
<blockquote><p>Are we to assume that our managers cant disassociate our personal lives from the professionalism we keep in the workplace? Any rational being knows that the behavior you put on at a house party will be dramatically different from that of a work setting.</p></blockquote>
<p>He goes on in a reply saying that, in the near future, Gen-Y will be the ones making the hiring decisions and future generations might have less to worry about.</p>
<p>Something <a href="http://twitter.com/modite">Rebecca Thorman</a> points out <a href="http://modite.com/blog/2009/08/04/will-you-regret-your-online-presence/">in one of her own video posts</a> is that Facebook and other social media sites are a great place to look back and see how you&#8217;ve evolved throughout the years. This is one of the main reasons I keep my Facebook the way it is. It&#8217;s my ultimate journal of the last 5 years of my life that I am willing, and excited, to share with the rest of the world. Yes I am drinking in some of the pictures and yes some of the conversations are a little out of whack, but it&#8217;s part of who I am because it&#8217;s part of who I was.</p>
<p>Finally, I want to <a href="http://eaves.ca/2008/01/23/gen-y-on-facebook-they-just-dont-care/">share a post with you from earlier last year</a> by <a href="http://twitter.com/david_a_eaves">David Eaves</a> that provides a little more insight on how Gen-Y approaches Facebook based on their history with the platform. We are very aware of who is looking at what we are posting and we might not care us much as you think we should.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JonBishop?a=a7oVgjGWOF4:5CRhtAacJlE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=a7oVgjGWOF4:5CRhtAacJlE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=a7oVgjGWOF4:5CRhtAacJlE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=a7oVgjGWOF4:5CRhtAacJlE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=a7oVgjGWOF4:5CRhtAacJlE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=a7oVgjGWOF4:5CRhtAacJlE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=a7oVgjGWOF4:5CRhtAacJlE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=a7oVgjGWOF4:5CRhtAacJlE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=a7oVgjGWOF4:5CRhtAacJlE:LQx-feW9hR8"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=LQx-feW9hR8" border="0"></img></a>
</div>]]></content:encoded>
			<link>http://www.gooruze.com/members/jonbish/blog/156946/</link>
			<guid isPermaLink="true">http://www.gooruze.com/members/jonbish/blog/156946/</guid>
			<pubDate>Tue, 01 Sep 2009 18:19:38 -0700</pubDate>
		</item>
		<item>
			<title>Please Control Your Facebook Image</title>
			<author>jonbish</author>
			<description>- http://www.jonbishop.com/2009/08/please-control-your-facebook-image/
It seems like a majority of Gen-Y still doesn&amp;#8217;t understand how to maintain their public image. Just because you&amp;#8217;ve created a LinkedIn account for your boss to check out, does not mean he&amp;#8217;s going to overlook your party pics on Facebook. We&amp;#8217;re smarter than this.

So what am I getting at? Well, some people say you should remove all ...</description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.jonbishop.com/2009/08/please-control-your-facebook-image/" title="Permanent link to Please Control Your Facebook Image"><img class="post_image aligncenter frame" src="http://www.jonbishop.com/wp-content/uploads/2009/07/privacy.jpg" width="470" height="200" alt="Control Your Image" /></a>
</p><p>It seems like a majority of Gen-Y still doesn&#8217;t understand how to maintain their public image. Just because you&#8217;ve created a LinkedIn account for your boss to check out, does not mean he&#8217;s going to overlook your party pics on Facebook. We&#8217;re smarter than this.<br />
<span id="more-1000"></span><br />
So what am I getting at? Well, some people say you should remove all the party pics and immature comments from your social media profiles but I think that&#8217;s a bit much. I joined Facebook to keep in touch with friends and family first and foremost. I don&#8217;t want to ruin a perfectly good channel for immature communications when I want it.</p>
<p><strong>So learn to control it!</strong></p>
<p>Look into <a href="http://mashable.com/2009/04/28/facebook-privacy-settings/">setting up groups and privacy settings</a> so that only the people you want can see the information you want them to see. Think twice about the most appropriate place to complain about how you lost your phone in a toilet last night &#8230; then be sure only the right people will see the photos leading up to you losing your phone.</p>
<p>There is no reason why you cant have a normal social life and use Facebook like you did back in college while at the same time maintaining a clean public image. The lines are slowly blurring between personal and business relations but it&#8217;s up to you to make sure that line still exists to some degree.</p>
<p>It&#8217;s your life, take control.</p>
<p>- Photo by <a style="color: #0063dc; text-decoration: underline;" title="Link to rpongsaj's photostream" rel="dc:creator cc:attributionURL" href="http://www.flickr.com/photos/pong/"><strong>rpongsaj</strong></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JonBishop?a=MsPx4LUqN5A:pSp7USA2gGQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=MsPx4LUqN5A:pSp7USA2gGQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=MsPx4LUqN5A:pSp7USA2gGQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=MsPx4LUqN5A:pSp7USA2gGQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=MsPx4LUqN5A:pSp7USA2gGQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=MsPx4LUqN5A:pSp7USA2gGQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=MsPx4LUqN5A:pSp7USA2gGQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=MsPx4LUqN5A:pSp7USA2gGQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=MsPx4LUqN5A:pSp7USA2gGQ:LQx-feW9hR8"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=LQx-feW9hR8" border="0"></img></a>
</div>]]></content:encoded>
			<link>http://www.gooruze.com/members/jonbish/blog/156669/</link>
			<guid isPermaLink="true">http://www.gooruze.com/members/jonbish/blog/156669/</guid>
			<pubDate>Mon, 31 Aug 2009 09:34:55 -0700</pubDate>
		</item>
		<item>
			<title>Stop Using Pop-Ups</title>
			<author>jonbish</author>
			<description></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: center;"><object id="viddler_2fba6c9b" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="437" height="370" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><param name="src" value="http://www.viddler.com/player/2fba6c9b/" /><param name="name" value="viddler_2fba6c9b" /><param name="allowfullscreen" value="true" /><embed id="viddler_2fba6c9b" type="application/x-shockwave-flash" width="437" height="370" src="http://www.viddler.com/player/2fba6c9b/" name="viddler_2fba6c9b" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JonBishop?a=S-fEqvWnDLo:3Pp_nYVar4o:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=S-fEqvWnDLo:3Pp_nYVar4o:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=S-fEqvWnDLo:3Pp_nYVar4o:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=S-fEqvWnDLo:3Pp_nYVar4o:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=S-fEqvWnDLo:3Pp_nYVar4o:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=S-fEqvWnDLo:3Pp_nYVar4o:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=S-fEqvWnDLo:3Pp_nYVar4o:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=S-fEqvWnDLo:3Pp_nYVar4o:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=S-fEqvWnDLo:3Pp_nYVar4o:LQx-feW9hR8"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=LQx-feW9hR8" border="0"></img></a>
</div>]]></content:encoded>
			<link>http://www.gooruze.com/members/jonbish/blog/156670/</link>
			<guid isPermaLink="true">http://www.gooruze.com/members/jonbish/blog/156670/</guid>
			<pubDate>Mon, 31 Aug 2009 09:32:39 -0700</pubDate>
		</item>
		<item>
			<title>Actions Speak Louder Than Words</title>
			<author>jonbish</author>
			<description>- http://www.jonbishop.com/2009/08/actions-speak-louder-than-words/
You can save me 200 bucks? Prove it.
You can design awesome WordPress themes? Where&amp;#8217;s your portfolio?
You know a lot about social media? Who have you helped?
It&amp;#8217;s not about what you say you can do, it&amp;#8217;s about doing it. Stop saying you can help people with their problems and start helping them. There are people begging for WordPress help ...</description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.jonbishop.com/2009/08/actions-speak-louder-than-words/" title="Permanent link to Actions Speak Louder Than Words"><img class="post_image aligncenter frame" src="http://www.jonbishop.com/wp-content/uploads/2009/08/actions.jpg" width="470" height="150" alt="Actions Speak Louder Than Words" /></a>
</p><blockquote><p>You can save me 200 bucks? <strong>Prove it.</strong></p>
<p>You can design awesome WordPress themes? <strong>Where&#8217;s your portfolio?</strong></p>
<p>You know a lot about social media? <strong>Who have you helped?</strong></p></blockquote>
<p>It&#8217;s not about what you say you can do, it&#8217;s about doing it. Stop saying you can help people with their problems and start helping them. There are people begging for <a href="http://search.twitter.com/search?q=wordpress+help+OR+%3F+-filter:links+-RT">WordPress help on Twitter</a> right now, why don&#8217;t you track them down and lend them a hand Mr WordPress expert. <strong>Social Media is not about broadcasting your capabilities but rather an excellent platform for displaying them.</strong></p>
<p>There are tons of people creating real relationships in social media because they are communicating. They help and recommend each other. You need to create some sort or tangible <a href="http://www.copyblogger.com/social-proof-herd-it-through-the-grapevine/">social proof</a>. The problem is numbers are a a dying (dead) form of social proof. Your Twitter followers and <a href="http://www.jonbishop.com/2009/06/do-we-even-need-feedburner-anymore/">blog subscriber numbers can both be manipulated</a>. That leaves your actions and thoughts, and the more conversation the better.</p>
<p>So put up a portfolio that proves your artistic capabilities. Reach out to others regularly to both learn and educate. Interaction and communication is your key to developing tangible social proof.</p>
<p>- Photo by <a title="Link to Aidan Jones' photostream" rel="dc:creator cc:attributionURL" href="http://www.flickr.com/photos/aidan_jones/">Aidan Jones</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JonBishop?a=EgTPRvmZH9I:ndCL1kMCEDA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=EgTPRvmZH9I:ndCL1kMCEDA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=EgTPRvmZH9I:ndCL1kMCEDA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=EgTPRvmZH9I:ndCL1kMCEDA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=EgTPRvmZH9I:ndCL1kMCEDA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=EgTPRvmZH9I:ndCL1kMCEDA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=EgTPRvmZH9I:ndCL1kMCEDA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=EgTPRvmZH9I:ndCL1kMCEDA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=EgTPRvmZH9I:ndCL1kMCEDA:LQx-feW9hR8"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=LQx-feW9hR8" border="0"></img></a>
</div>]]></content:encoded>
			<link>http://www.gooruze.com/members/jonbish/blog/155828/</link>
			<guid isPermaLink="true">http://www.gooruze.com/members/jonbish/blog/155828/</guid>
			<pubDate>Thu, 27 Aug 2009 10:45:12 -0700</pubDate>
		</item>
		<item>
			<title>Battle of the ReTweet Buttons</title>
			<author>jonbish</author>
			<description>- http://www.jonbishop.com/2009/08/battle-of-the-retweet-buttons/
ReTweet buttons have taken social media by storm and are an easy way to encourage the sharing of your content on Twitter. There are dozens of solutions similar to the 3 buttons listed below, but these seem to be the most promising and include a &amp;#8220;Tweet Count&amp;#8221; on the buttons themselves.
I&amp;#8217;m often surprised at how many great blogs ...</description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.jonbishop.com/2009/08/battle-of-the-retweet-buttons/" title="Permanent link to Battle of the ReTweet Buttons"><img class="post_image aligncenter frame" src="http://www.jonbishop.com/wp-content/uploads/2009/08/retweetbuttons.jpg" width="470" height="149" alt="ReTweet Buttons for a blog" /></a>
</p><p>ReTweet buttons have taken social media by storm and are an easy way to encourage the sharing of your content on Twitter. There are dozens of solutions similar to the 3 buttons listed below, but these seem to be the most promising and include a &#8220;Tweet Count&#8221; on the buttons themselves.</p>
<p>I&#8217;m often surprised at how many great blogs aren&#8217;t using these buttons yet when it seems like a no-brainer. The only reason I could see not having one of these buttons on your site is if you don&#8217;t want social proof of your blogs failure. In other words, you don&#8217;t want the rest of the world seeing how many people are not sharing your posts. But then again, if that&#8217;s the case, maybe adding one of these buttons to your site is the first step to getting a solid new following.<span id="more-1150"></span></p>
<h3><a href="http://tweetmeme.com/about/retweet_button">TweetMeme retweet button</a></h3>
<p>TweetMeme&#8217;s retweet button wasn&#8217;t the first of it&#8217;s kind, but it definitely sparked the trend that eventually led to this post. This button is probably the most recognizable throughout the blogosphere because of it&#8217;s unparalleled support and cutting edge website. Past attempts at aggregating retweets into a &#8220;Digg style&#8221; website fell short due to shortcomings in functionality and bandwidth.</p>
<p>My only quarrel with the TweetMeme button was the fact that it automatically added &#8220;RT @tweetmeme&#8221; to your tweet unless you had some sort of high level clearance to get it customized. However, it seems they have fixed this and you can now customize it, as you should be able to. This was an especially smart move considering the launch of BackType&#8217;s retweet widget that allowed you to customize itself to your heart&#8217;s content.</p>
<h3><a href="http://www.backtype.com/widgets/tweetcount">Backtype Tweetcount Widget</a></h3>
<p>This is the retweet button I am currently using because, at the time, TweetMeme wasn&#8217;t allowing me to customize my tweets. The main difference between BackType&#8217;s widget and TweetMeme&#8217;s is that BackType counts all Tweets pointing to a post where TweetMeme only counts each tweet once. You can also change the color of the widget to match your website&#8217;s theme. I&#8217;ll probably stick with this one for awhile.</p>
<h3><a href="http://retweet.com/button">Real Retweet Button</a></h3>
<p>This guy popped up just the other day. Besides being a TweetMeme ripoff &#8230; well it&#8217;s a TweetMeme ripoff. The only reason I would even consider using this button is if I wanted to try something different.</p>
<p><strong>So which RT button do you use?</strong></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JonBishop?a=TUzqCfZqsxE:QiuUUMzPM3M:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=TUzqCfZqsxE:QiuUUMzPM3M:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=TUzqCfZqsxE:QiuUUMzPM3M:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=TUzqCfZqsxE:QiuUUMzPM3M:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=TUzqCfZqsxE:QiuUUMzPM3M:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=TUzqCfZqsxE:QiuUUMzPM3M:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JonBishop?i=TUzqCfZqsxE:QiuUUMzPM3M:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=TUzqCfZqsxE:QiuUUMzPM3M:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JonBishop?a=TUzqCfZqsxE:QiuUUMzPM3M:LQx-feW9hR8"><img src="http://feeds.feedburner.com/~ff/JonBishop?d=LQx-feW9hR8" border="0"></img></a>
</div>]]></content:encoded>
			<link>http://www.gooruze.com/members/jonbish/blog/155359/</link>
			<guid isPermaLink="true">http://www.gooruze.com/members/jonbish/blog/155359/</guid>
			<pubDate>Tue, 25 Aug 2009 08:20:11 -0700</pubDate>
		</item>
</channel>
</rss>
