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

<channel>
	<title>Omega Point &#187; WordPress</title>
	<atom:link href="http://www.catherineomega.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.catherineomega.com</link>
	<description>A blog by Catherine Winters</description>
	<lastBuildDate>Mon, 12 Jul 2010 21:30:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>WordCamp Vancouver, Child Themes and WordPress 3.0: Frequently Asked Questions</title>
		<link>http://www.catherineomega.com/2010/06/wordcamp-vancouver-child-themes-and-wordpress-3-0-frequently-asked-questions/</link>
		<comments>http://www.catherineomega.com/2010/06/wordcamp-vancouver-child-themes-and-wordpress-3-0-frequently-asked-questions/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 17:15:42 +0000</pubDate>
		<dc:creator>Catherine Winters</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordCamp Vancouver]]></category>

		<guid isPermaLink="false">http://www.catherineomega.com/?p=698</guid>
		<description><![CDATA[With the release of WordPress 3.0, I thought it was fair time I actually posted my long-awaited WordCamp Vancouver recap. So I am. Justin Carlson has posted the 45-minute video of Tris Hussey and I speaking on WordPress 3.0 and child themes–check it out and listen to me nasally “um” and “uh” my way through [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/development/2010/06/thelonious/">With the release of WordPress 3.0</a>, I thought it was fair time I actually posted my long-awaited WordCamp Vancouver recap. So I am.</p>
<p><a href="http://carlsonmedia.ca/">Justin Carlson</a> has posted the 45-minute video of <a href="http://trishussey.com">Tris Hussey</a> and I speaking on WordPress 3.0 and child themes–check it out and listen to me nasally “um” and “uh” my way through the audience’s questions!</p>
<p><embed src="http://blip.tv/play/AYHpjXAC" type="application/x-shockwave-flash" width="480" height="300" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<p>Finally, <a href="http://www.slideshare.net/trishussey/word-press-3-wordcamp">our presentation slides</a> make sense! </p>
<p><a href="http://carlsonmedia.ca/2010/06/wordcamp-vancouver-2010/">For videos of the other speakers, check out Justin’s blog post.<br />
</a></p>
<p>Both during and after our presentation, I fielded a few questions, most of which were variations on a theme. I’d like to go over those now.</p>
<h3>WordPress 3.0 and Child Themes: Frequently Asked Questions</h3>
<h4>1. When should I upgrade to WordPress 3.0?</h4>
<p><a href="http://wordpress.org/">Right now.</a> It’s ready, it works, and updating WordPress is (usually) very easy. Keeping your WordPress and plugins current is the best defense against having your site hacked. (Assuming your password is not ‘password’ or ‘secret’, that is. If it is, go change it right now.)</p>
<h4>2. When should I use a child theme?</h4>
<p>All the time. If you want to modify your site’s look and feel beyond changing the background image on <a href="http://2010dev.wordpress.com/">Twenty Ten</a>, you need a child theme. </p>
<h4>3. Why? That sounds crazy. Don’t you emphasize in your presentation that my current theme will still work exactly the same way?</h4>
<p>Sure, and I’m a big proponent of doing as little work as possible while staying current. Yes, the WordPress 1.x theme you’ve been using since 2004 will still work on WP 3.0. Yes, the functionality will remain the same. However, if basing a new theme on an existing one, establishing it as a child both reduces the amount of code you need to change while keeping it separate and independent of the parent.</p>
<p>If you build themes from scratch–say, like me, for example–it’s far better to work from the same initial structure, rather than trying to reinvent the wheel every time. In the past, that might have involved copying the same code over to a new theme and working from there.</p>
<p>With child themes, I can set the background, column width, colours and typography for a new site with fewer than a dozen declarations, isolating only the changes relevant to that site in a separate CSS file. The key benefit of this becomes apparent when performing updates. Suppose I add a new feature to my child theme’s functions.php, or find a cleaner way to format dates in style.css. I can then copy those changes back to the parent theme, allowing me to very quickly add that functionality to existing sites without having to touch their respective child themes.</p>
<h4>4. But when would that ever happen? Seriously, isn’t that kind of an edge case?</h4>
<p><a href="http://wpengineer.com/wordpress-3-0-specific-author-templates/">WordPress 3.0 adds extraordinary new levels of control over author templates</a>, giving us the ability to style individual authors’ profiles for the first time. Future versions of WordPress may contain similar features to allow us to more flexibly aggregate lists of users, a greater range of default fields, and so on. By limiting the changes necessary to your own theme to accommodate these hypothetical future additions to WordPress, you can be assured that your site will gain features as your parent theme is updated, rather than being locked into static functionality long after future versions of WordPress give you blogging and styling features we can only dream about today.</p>
<h4>5. Custom content types: should I be using those?</h4>
<p>Maybe.</p>
<p>Consider the following scenario: You have a bunch of posts. Some of those posts are reviews. Reviews can quickly fall out of date, so they need updates. These updates should be very clear to users, allowing them to quickly see how old–and therefore relevant–a review is. So, what to do?</p>
<ul>
<li>
<h5>Option A: We need types. Lots of types.</h5>
<p>Create a custom post type called “Reviews” and one named “Review Updates”, that in turn, can be associated with the Reviews type. Both can be easily themed differently than your standard Post and Page types.</li>
<li>
<h5>Option B: Custom Fields</h5>
<p>Create your “Reviews” type, but add custom fields to it, allowing for those updates right in the post itself. That might be cleaner, though it would be tougher to add features to your blog like a “Recent Updates” sidebar widget, if that’s something you’d like–now or in future.</li>
<li>
<h5>Option C: Just leave it alone.</h5>
<p>Alternatively, you could just add “Update, June 25th, 2010″ to the bottom of the post, surrounding it with a DIV, allowing you to style “updates” accordingly. You’d have much less work ahead of you, and you wouldn’t run into problems with your custom post type not fitting the content.</p>
<p><a href="http://www.catherineomega.com/wp-content/uploads/2010/06/Picture-11.png"><img src="http://www.catherineomega.com/wp-content/uploads/2010/06/Picture-11.png" alt="" title="Custom post type alternative: &quot;Catherine Uses...&quot; code" width="451" height="101" class="aligncenter size-full wp-image-699" /></a></p>
<p>This latter method is actually what I’m doing on this very site with my new feature, <em><a href="http://www.catherineomega.com/category/catherine-uses/">Catherine Uses…</a></em>. It’s just easier for me to copy and paste a little code, adapting it as necessary.</p>
<p><a href="http://www.catherineomega.com/2010/06/notational-velocity-and-simplenote-in-which-catherine-schools-you-on-notetaking/">As I’ve written before, plain text will always be more flexible</a> — at least, if you’re the only one editing your blog. If this custom post type would be used by a dozen different writers, it can make more sense to standardize rather than train everyone on adding DIV tags to all their updates.</li>
</ul>
<h4>6. When should I use Multisite?</h4>
<p>This is actually a fairly complicated answer for a number of reasons.</p>
<p>Short answer: you shouldn’t. If there’s a choice between using multisite and not, my recommendation is that you don’t. If you have no choice, IE, you’re running dozens of WordPress blogs on the same server, well, at least WordPress and WordPress MU have the same codebase now.</p>
<p>Got another question on WordPress 3.0 or parent/child themes? Feel free to ask in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.catherineomega.com/2010/06/wordcamp-vancouver-child-themes-and-wordpress-3-0-frequently-asked-questions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordCamp Vancouver 2010: Tris and Catherine tell you why your current WordPress theme sucks.</title>
		<link>http://www.catherineomega.com/2010/06/wordcamp-vancouver-2010-tris-and-catherine-tell-you-why-your-current-wordpress-theme-sucks/</link>
		<comments>http://www.catherineomega.com/2010/06/wordcamp-vancouver-2010-tris-and-catherine-tell-you-why-your-current-wordpress-theme-sucks/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 00:23:52 +0000</pubDate>
		<dc:creator>Catherine Winters</dc:creator>
				<category><![CDATA[Blogosphere]]></category>
		<category><![CDATA[Catherine]]></category>
		<category><![CDATA[Vancouver]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.catherineomega.com/?p=667</guid>
		<description><![CDATA[So! WordCamp Vancouver 2010, huh? That was pretty good, I thought. I particularly enjoyed the “Is WordPress a CMS?” panel featuring Dave, Christine and Cam. Consensus: Sort of! Maybe! As promised, Tris Hussey and I presented “WordPress 3.0 &#38; Parent-Child Themes” Being a generally nice sort of person, I let Tris cover the whole, “check [...]]]></description>
			<content:encoded><![CDATA[<p>So! WordCamp Vancouver 2010, huh? That was pretty good, I thought. I particularly enjoyed the “<a href="http://www.wordcampvancouver.com/schedule/">Is WordPress a CMS?</a>” panel featuring <a href="http://www.dazil.com/">Dave</a>, <a href="http://www.bluelimemedia.com">Christine</a> and <a href="http://www.reactionlab.com/">Cam</a>. Consensus: <a href="http://www.bluelimemedia.com/2010/06/13/is-wordpress-a-content-management-solution/">Sort of!</a> Maybe!</p>
<p><a href="http://www.catherineomega.com/2010/621/catherine-is-speaking-at-wordcamp-vancouver-2010">As promised</a>, <a href="http://trishussey.com">Tris Hussey</a> and I presented “WordPress 3.0 &amp; Parent-Child Themes”</p>
<p>Being a generally nice sort of person, I let Tris cover the whole, “check it, I’m dragging categories and posts and things into a menu” bit–definitely a crowd-pleaser, that. </p>
<p><a href="http://twitter.com/catherineomega">As I mentioned on Twitter</a>, I’m hoping to post a quick FAQ up tomorrow answering the four or five main questions I’ve been asked after our presentation. (Ooh, magazine themes! Picking good parent themes! Multisite! Etc!)</p>
<p>For our slides, <a href="http://www.slideshare.net/trishussey/word-press-3-wordcamp">please consult Tris’ SlideShare account</a>, or move your eyes slightly downward to the embedded SlideShare widget immediately following this sentence.</p>
<div style="width:425px" id="__ss_4484316"><strong style="display:block;margin:12px 0 4px"><a href="http://www.slideshare.net/trishussey/word-press-3-wordcamp" title="Word press 3 @ wordcamp">Word press 3 @ wordcamp</a></strong><object id="__sse4484316" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=wordpress3wordcamp-100612145858-phpapp02&#038;stripped_title=word-press-3-wordcamp" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed name="__sse4484316" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=wordpress3wordcamp-100612145858-phpapp02&#038;stripped_title=word-press-3-wordcamp" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="padding:5px 0 12px">View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/trishussey">Tris Hussey</a>.</div>
</div>
<p>Also, be sure to <a href="http://trishussey.com/2010/06/12/wordcamp-vancouver-2010-presentation-wordpress-3-0-parent-child-themes/">check out Tris’ thoughts at his blog</a>!</p>
<p><strong>Update:</strong> For those who have asked, yes, it does appear that WordCamp was filmed, and on what appeared to be a Canon XL H1, so with any luck, we can all look forward to <a href="http://www.google.ca/search?hl=en&#038;safe=off&#038;q=pores+hdtv&#038;aq=f&#038;aqi=&#038;aql=&#038;oq=&#038;gs_rfai=">checking out my pores</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.catherineomega.com/2010/06/wordcamp-vancouver-2010-tris-and-catherine-tell-you-why-your-current-wordpress-theme-sucks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Catherine is speaking at WordCamp Vancouver 2010</title>
		<link>http://www.catherineomega.com/2010/06/catherine-is-speaking-at-wordcamp-vancouver-2010/</link>
		<comments>http://www.catherineomega.com/2010/06/catherine-is-speaking-at-wordcamp-vancouver-2010/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 19:52:25 +0000</pubDate>
		<dc:creator>Catherine Winters</dc:creator>
				<category><![CDATA[Blogosphere]]></category>
		<category><![CDATA[Catherine]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Vancouver]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.catherineomega.com/?p=621</guid>
		<description><![CDATA[Happy news, Vancouver-area WordPress users! I’m pleased to confirm that, yes, I will be at WordCamp Vancouver 2010 on June 12. I’ll be speaking with Tris Hussey about the upcoming (Possibly just-released by then!) WordPress 3.0 and child themes. For more information about child themes, check out Tris’ blog. Personally, I’m excited about the new [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-622" title="WordPress logo: blue-xl" src="http://www.catherineomega.com/wp-content/uploads/2010/06/blue-xl-150x150.png" alt="WordPress Logo" width="150" height="150" />Happy news, Vancouver-area WordPress users!</p>
<p>I’m pleased to confirm that, yes, I will be at WordCamp Vancouver 2010 on June 12. <a href="http://www.wordcampvancouver.com/speakers/confirmed/">I’ll be speaking with Tris Hussey</a> about the upcoming (Possibly just-released by then!) WordPress 3.0 and child themes. For more information about child themes, <a href="http://trishussey.com/2010/05/21/its-easy-to-make-child-themes-with-twenty-ten-download-my-first-wordpress-theme/">check out Tris’ blog</a>.</p>
<p>Personally, I’m excited about the new content types and menu features available in WP 3.0 and I’m looking forward to seeing what people do with them. Remember, WordPress isn’t <em>just</em> for blogs!</p>
<p>As <a href="http://catherinewinters.com">a longtime Drupal developer</a>, I’m particularly impressed to realize that all but three sites I’ve ever worked on could be implemented in WordPress 3.0 as or more easily than the Drupal, ExpressionEngine, or Plone backends they were built with. As such, I’ll be paying close attention to the <a href="http://www.wordcampvancouver.com/schedule/">“WordPress as a CMS” panel discussion</a> with <a href="http://www.bluelimemedia.com">Christine Rondeau</a>, <a href="http://twitter.com/camcavers">Cam Cavers</a>, and <a href="http://www.dazil.com">Dave Zille</a>.</p>
<p>I’ll also be volunteering at the <a href=" http://www.wordcampvancouver.com/2010/04/wordcamp-vancouver-genius-bar/ ">WP Genius Bar</a>, where I’ll be free to answer any questions you might have or help fix any problems you might be having with your blog. I’m particularly happy to offer advice on WP 3.0 or child themes, topics I enjoy doing more than just give talks about.</p>
<p>If you don’t already have tickets to WordCamp Vancouver, I’m afraid they’ve sold out, so tough beans. However, <a href="http://www.wordcampvancouver.com/tickets/  ">as the WordCamp Vancouver site notes</a>:</p>
<blockquote><p><strong>Tickets are currently sold out, but we’re hoping to release a few more before the event, so hang tight!</strong></p></blockquote>
<p><strong></strong>Fingers crossed!</p>
<p>I hope to see you there–and if you have any questions about child themes, leave a comment on this post! I’d love to hear about what people are interested in.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.catherineomega.com/2010/06/catherine-is-speaking-at-wordcamp-vancouver-2010/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Blogathon 2009: All in One SEO Pack must be configured.</title>
		<link>http://www.catherineomega.com/2009/07/blogathon-2009-all-in-one-seo-pack-must-be-configured/</link>
		<comments>http://www.catherineomega.com/2009/07/blogathon-2009-all-in-one-seo-pack-must-be-configured/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 07:24:04 +0000</pubDate>
		<dc:creator>Catherine Winters</dc:creator>
				<category><![CDATA[Blogathon 2009]]></category>
		<category><![CDATA[Blogosphere]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.catherineomega.com/?p=420</guid>
		<description><![CDATA[So earlier today, I was informed by all-around nice guy and occasional WordPress-handholder Tris Hussey that I ought to be using the All in One SEO Pack on my WordPress blog. So I got it, only to discover that all the config fields were empty. Apparently version 1.6.4 has a bit of a problem with [...]]]></description>
			<content:encoded><![CDATA[<p>So earlier today, I was informed by all-around nice guy and occasional WordPress-handholder <a href="http://www.trishussey.com/">Tris Hussey</a> that I ought to be using the <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">All in One SEO Pack</a> on my WordPress blog.</p>
<p>So I got it, only to discover that all the config fields were empty. Apparently version 1.6.4 has a bit of a problem with not prepopulating the fields with the proper strings and escape characters. Whoops.</p>
<p>Fortunately, Tris found a site that <a href="http://semperfiwebdesign.com/blog/all-in-one-seo-pack-new-cms-features/">had a giant screenshot of the actual settings</a> here. So in the event that you’re taking advice about the version 1.6.4 of the All in One SEO pack for WordPress, do check that out, won’t you? You’ll have to retype everything, but still, awesome.</p>
<p>I really don’t want to see this yellow “All in One SEO Pack must be configured” message at the top of all my posts, and hey, better SEO stuff would be super, too, so I’m fixing that right now.</p>
<p>If you’re not using it, you should be. More hits are better hits.</p>
<p>(Thanks, Tris!)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.catherineomega.com/2009/07/blogathon-2009-all-in-one-seo-pack-must-be-configured/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogathon 2009: WordPress, WordPress, WordPress!</title>
		<link>http://www.catherineomega.com/2009/07/blogathon-2009-wordpress-wordpress-wordpress/</link>
		<comments>http://www.catherineomega.com/2009/07/blogathon-2009-wordpress-wordpress-wordpress/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 23:10:05 +0000</pubDate>
		<dc:creator>Catherine Winters</dc:creator>
				<category><![CDATA[Blogathon 2009]]></category>
		<category><![CDATA[Blogosphere]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.catherineomega.com/?p=382</guid>
		<description><![CDATA[This is what happens when you spend all day at Blogathon: “Catherine, do you want anything?“ “No, I’ll get something upstairs at WordPress.“ ”…what?” “Raul, is that your phone?“ “No, it’s WordPress’–WordCamp–Work. Space. It’s Workspace’s phone.”]]></description>
			<content:encoded><![CDATA[<p>This is what happens when you spend all day at Blogathon:</p>
<ul>
<li>“Catherine, do you want anything?“<br />
“No, I’ll get something upstairs at WordPress.“<br />
”…what?”</li>
<li>“Raul, is that your phone?“<br />
“No, it’s WordPress’–WordCamp–Work. Space. It’s Workspace’s phone.”</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.catherineomega.com/2009/07/blogathon-2009-wordpress-wordpress-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Blogathon 2009: Catherine needs panniers!</title>
		<link>http://www.catherineomega.com/2009/07/blogathon-2009-catherine-needs-panniers/</link>
		<comments>http://www.catherineomega.com/2009/07/blogathon-2009-catherine-needs-panniers/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 18:57:14 +0000</pubDate>
		<dc:creator>Catherine Winters</dc:creator>
				<category><![CDATA[Blogathon 2009]]></category>
		<category><![CDATA[Blogosphere]]></category>
		<category><![CDATA[Cycling]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.catherineomega.com/?p=361</guid>
		<description><![CDATA[So I was working on my next post here at Workspace, when who should arrive but noted fountain pen enthusiast and friend to WordPress themers everywhere, Tris Hussey![1] Which is good, because he very graciously tolerated my inadvertent inviting-myself-along-to-dinner last night, and answered my questions about categories and post visibility and things. And even more [...]]]></description>
			<content:encoded><![CDATA[<p>So I was working on my next post here at <a href="http://www.abetterplacetowork.com/">Workspace</a>, when who should arrive but <a href="http://www.google.ca/search?q=tris%20hussey%20fountain%20pen">noted fountain pen enthusiast</a> and friend to WordPress themers everywhere, <a href="http://www.trishussey.com/">Tris Hussey</a>!<small><sub>[1]</sub></small></p>
<p>Which is good, because he very graciously tolerated my inadvertent inviting-myself-along-to-dinner last night, <em>and</em> answered my questions about categories and post visibility and things.</p>
<p>And even more importantly, he brought his <strong>incredibly fancy bicycle panniers</strong> that I want now that he’s showed them off to me.</p>
<p>The Axiom Lesalle panniers come with all kinds of crazy features: <a href="http://www.momentumplanet.com/gear/panniers" class="broken_link">as this review notes</a>, you could take them in the shower. You know, if that’s the sort of thing you’re into.</p>
<blockquote><p>These bags come with waterproof covers, but the bags themselves are water resistant and I haven’t yet bothered using the covers. Lacking a true deluge in which to test them, Denise did put one bag into her shower with the cover on, and it remained waterproof.</p></blockquote>
<p><a style="padding-right:5px; float:left;" href="http://www.flickr.com/photos/72203941@N00/3755018047/" title="Soon now, Axiom Lesalle panniers. Soon you will be mine. by Catherine Winters, on Flickr"><img src="http://farm3.static.flickr.com/2574/3755018047_db112bf02f_m.jpg" width="180" height="240" alt="Soon now, Axiom Lesalle panniers. Soon you will be mine." /></a></p>
<p>And they look great, attached to my new rear rack. Needless to say, I must have them. Sorry, Tris.</p>
<p>Soon now. Soon they will be mine.</p>
<p>[1] Tris is running a<a href="http://education.blogm2o.com/classes/" class="broken_link"> series of WordPress classes</a> in the next few weeks: don’t know WordPress? Need to know WordpPress even better? <a href="http://education.blogm2o.com/classes/" class="broken_link">Check them out.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.catherineomega.com/2009/07/blogathon-2009-catherine-needs-panniers/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Blogathon 2009: To WordTwit or not to WordTwit?</title>
		<link>http://www.catherineomega.com/2009/07/blogathon-2009-to-wordtwit-or-not-to-wordtwit/</link>
		<comments>http://www.catherineomega.com/2009/07/blogathon-2009-to-wordtwit-or-not-to-wordtwit/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 17:23:37 +0000</pubDate>
		<dc:creator>Catherine Winters</dc:creator>
				<category><![CDATA[Blogathon 2009]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Omega Point]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.catherineomega.com/?p=346</guid>
		<description><![CDATA[So I hadn’t tweeted announcements of my Blogathon blog posts for fear of totally spamming the hell out of my Twitter, but everyone else seems to be doing it — and in fact, are surprised that I’m not. So what the heck, let’s do this.   I’m told WordTwit is the “dear Twitter: I posted [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_347" class="wp-caption alignleft" style="width: 327px"><a href="http://www.catherineomega.com/wp-content/uploads/2009/07/Picture-6.png"><img class="size-full wp-image-347" title="Picture 6" src="http://www.catherineomega.com/wp-content/uploads/2009/07/Picture-6.png" alt=" " width="317" height="310" /></a><p class="wp-caption-text"> </p></div>
<p>So I hadn’t tweeted announcements of my Blogathon blog posts for fear of totally spamming the hell out of <a href="http://twitter.com/CatherineOmega">my Twitter</a>, but everyone else seems to be doing it — and in fact, are surprised that I’m not. So what the heck, let’s do this.</p>
<div style="clear:both;"> </div>
<p><a class="alignleft" style="padding-right:5px;" title="Duane Storey's back, hard at work. by Catherine Winters, on Flickr" href="http://www.flickr.com/photos/72203941@N00/3755569832/"><img src="http://farm3.static.flickr.com/2454/3755569832_8563bb8b15_m.jpg" alt="Duane Storey's back, hard at work." width="240" height="180" /></a>I’m told <a href="http://wordpress.org/extend/plugins/wordtwit/">WordTwit</a> is the “dear Twitter: I posted on my blog” WordPress plugin of choice, and it’s certainly highly rated enough! I hadn’t realized it was codeveloped by <a href="http://www.duanestorey.com/blog/">fellow Blogathon Vancouver-er Duane Storey</a>, but that just means I can huck something across the room at him if I need help, right?</p>
<p>I definitely like that installing plugins on WordPress is a lot quicker and easier than installing modules on Drupal. The two are apples and oranges, really, but it sure is a pleasant change.</p>
<p>So it’s installed, activated, and now I just have to turn it on. Aaaaand, done. Neat.</p>
<p>One handy feature is that it can optionally use your own server as a URL shorterner service rather than something like bit.ly or TinyURL. Sadly, “catherineomega.com” is not exactly short.</p>
<p>While I was writing this post, <a href="http://www.countablyinfinite.ca/">Karen Fung</a> brought up a good point: how to include the <a href="http://search.twitter.com/search?q=%23blogathon">#blogathon hashtag</a> at the end of the tweet?</p>
<p>Simple: in the Settings panel, you can just set the string, with escape codes for [title] and [link]. (Guess which one does what?)</p>
<div id="attachment_348" class="wp-caption aligncenter" style="width: 470px"><a href="http://www.catherineomega.com/wp-content/uploads/2009/07/Picture-7.png"><img class="size-full wp-image-348 " title="Picture 7" src="http://www.catherineomega.com/wp-content/uploads/2009/07/Picture-7.png" alt="Just add your hashtags wherever you like." width="460" height="167" /></a><p class="wp-caption-text">Just add your hashtags wherever you like.</p></div>
<p>So the whole thing is pretty pain-free, frankly. Now let’s see if this tweets anyone when I publish it.</p>
<p>Edit: Yes, yes it does.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.catherineomega.com/2009/07/blogathon-2009-to-wordtwit-or-not-to-wordtwit/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
