<?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>Terence Eden has a Blog &#187; wordpress</title> <atom:link href="http://shkspr.mobi/blog/index.php/tag/wordpress/feed/" rel="self" type="application/rss+xml" /><link>http://shkspr.mobi/blog</link> <description>Mobiles, Shakespeare, Politics, Usability.</description> <lastBuildDate>Mon, 06 Feb 2012 16:31:09 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Making DynamicWP&#8217;s Simple White Theme XHTML Compliant</title><link>http://shkspr.mobi/blog/index.php/2010/07/making-dynamic-wps-simple-white-theme-xhtml-compliant/</link> <comments>http://shkspr.mobi/blog/index.php/2010/07/making-dynamic-wps-simple-white-theme-xhtml-compliant/#comments</comments> <pubDate>Tue, 27 Jul 2010 10:49:14 +0000</pubDate> <dc:creator>Terence Eden</dc:creator> <category><![CDATA[/etc/]]></category> <category><![CDATA[blog]]></category> <category><![CDATA[GPL]]></category> <category><![CDATA[meta]]></category> <category><![CDATA[theme]]></category> <category><![CDATA[wordpress]]></category><guid
isPermaLink="false">http://shkspr.mobi/blog/?p=2217</guid> <description><![CDATA[This blog is proud to be XHTML 1.0 Strict Compliant.  Just like it is polite to use correct spelling and grammar for human readers, I believe that correct markup is &#8220;polite&#8221; for rendering engines. I&#8217;ve recently started using DynamicWP&#8216;s Simple White Theme.  The theme is excellent, but generated around 60 validation errors.  Luckily these were <a
href='http://shkspr.mobi/blog/index.php/2010/07/making-dynamic-wps-simple-white-theme-xhtml-compliant/'>[...]</a>]]></description> <content:encoded><![CDATA[<p>This blog is proud to be <a
href="http://validator.w3.org/check?uri=referer">XHTML 1.0 Strict Compliant</a>.  Just like it is polite to use correct spelling and grammar for human readers, I believe that correct markup is &#8220;polite&#8221; for rendering engines.</p><p>I&#8217;ve recently started using <a
href="http://www.dynamicwp.net/">DynamicWP</a>&#8216;s <a
href="http://www.dynamicwp.net/free-themes/simple-white-theme/">Simple White Theme</a>.  The theme is excellent, but generated around 60 validation errors.  Luckily these were caused by a scant half dozen errors in the source code.<br
/> <img
src="http://shkspr.mobi/blog/wp-content/uploads/2010/07/lightweight-cover550-300x175.jpg" alt="Screenshots of the theme" title="lightweight-cover550" width="300" height="175" class="aligncenter size-medium wp-image-2272" /><br
/> Here is a quick summary of the errors, why they need to be fixed, and how to fix them.<br
/> <span
id="more-2217"></span></p><p>footer.php &#8211; line 8<br
/> Why: Target isn&#8217;t a valid XHTML attribute<br
/> From: &lt;p&gt;Powered by &lt;a href=&#8221;http://www.wordpress.org/&#8221; <span
style="color: #ff0000;">target=&#8221;_blank&#8221;</span>&gt;WordPress&lt;/a&gt; | SimpleWhite by &lt;a href=&#8221;http://www.dynamicwp.net/&#8221;&gt;Dynamicwp&lt;/a&gt;&lt;/p&gt;</p><p>To: &lt;p&gt;Powered by &lt;a href=&#8221;http://www.wordpress.org/&#8221; &gt;WordPress&lt;/a&gt; | SimpleWhite by &lt;a href=&#8221;http://www.dynamicwp.net/&#8221;&gt;Dynamicwp&lt;/a&gt;&lt;/p&gt;<br
/> index.php &#8211; line 63<br
/> Why: The &amp; symbol should be escaped to &amp;amp; when used in URLs. The element needs to be closed. The alt attribute needs to be included.<br
/> From: &lt;img src=&#8221;&lt;?php bloginfo(&#8216;template_directory&#8217;); ?&gt;/timthumb.php?src=&lt;?php echo catch_that_image(); ?&gt;&amp;w=275&amp;h=120&amp;zc=1&#8243;&gt;<br
/> To: &lt;img src=&#8221;&lt;?php bloginfo(&#8216;template_directory&#8217;); ?&gt;/timthumb.php?src=&lt;?php echo catch_that_image(); ?&gt;<span
style="color: #00ff00;">&amp;amp;w=275&amp;amp;h=120&amp;amp;zc=1&#8243; alt=&#8221;" /</span>&gt;</p><p>line 69<br
/> Why: The element needs to be closed<br
/> From: &lt;hr&gt;<br
/> To: &lt;hr<span
style="color: #00ff00;"> /</span>&gt;</p><p>sidebar.php &#8211; line 24<br
/> Why: The element needs to be closed<br
/> From: &lt;img src=&#8221;&lt;?php echo catch_that_image(); ?&gt;&#8221;&gt;<br
/> To: &lt;img src=&#8221;&lt;?php echo catch_that_image(); ?&gt;&#8221;<span
style="color: #00ff00;"> /</span>&gt;</p><p>line 26<br
/> Why: The &amp; symbol should be escaped to &amp;amp; when used in URLs. The element needs to be closed. The alt attribute needs to be included.<br
/> From: &lt;img src=&#8221;&lt;?php bloginfo(&#8216;template_directory&#8217;); ?&gt;/timthumb.php?src=&lt;?php echo catch_that_image(); ?&gt;&amp;w=40&amp;h=40&amp;zc=1&#8243;&gt;<br
/> To: &lt;img src=&#8221;&lt;?php bloginfo(&#8216;template_directory&#8217;); ?&gt;/timthumb.php?src=&lt;?php echo catch_that_image(); ?&gt;<span
style="color: #00ff00;">&amp;amp;w=40&amp;amp;h=40&amp;amp;zc=1&#8243; alt=&#8221;" /</span>&gt;</p><p>line 29<br
/> Why: The alt attribute needs to be included.<br
/> From: &lt;img src=&#8221;&lt;?php bloginfo(&#8216;template_directory&#8217;); ?&gt;/images/noimagesmall.jpg&#8221; /&gt;<br
/> To: &lt;img src=&#8221;&lt;?php bloginfo(&#8216;template_directory&#8217;); ?&gt;/images/noimagesmall.jpg&#8221; <span
style="color: #00ff00;">alt=&#8221;" </span>/&gt;</p><p>line 42<br
/> Why: Error.  The &lt;ul&gt; should be &lt;/ul&gt; to close the list.<br
/> From: &lt;ul&gt;<br
/> To: &lt;<span
style="color: #00ff00;">/</span>ul&gt;</p><p><a
href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=2217&amp;md5=7c9ec3c0ea8f72e28d516030d34c5cb0" title="Flattr" target="_blank"><img
src="http://shkspr.mobi/blog/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded> <wfw:commentRss>http://shkspr.mobi/blog/index.php/2010/07/making-dynamic-wps-simple-white-theme-xhtml-compliant/feed/</wfw:commentRss> <slash:comments>2</slash:comments> <atom:link rel="payment" href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=2217&amp;md5=7c9ec3c0ea8f72e28d516030d34c5cb0" type="text/html" /> </item> <item><title>WordPress Mobile &#8211; For The Rest of Us</title><link>http://shkspr.mobi/blog/index.php/2010/02/wordpress-mobile/</link> <comments>http://shkspr.mobi/blog/index.php/2010/02/wordpress-mobile/#comments</comments> <pubDate>Fri, 19 Feb 2010 16:10:49 +0000</pubDate> <dc:creator>Terence Eden</dc:creator> <category><![CDATA[mobile]]></category> <category><![CDATA[blog]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wpmp]]></category><guid
isPermaLink="false">http://shkspr.mobi/blog/?p=1660</guid> <description><![CDATA[WordPress is only for people rich enough to buy a smartphone and cool enough to choose the right brand.  Right? From the WordPress Blog: I like to moderate comments when I’m waiting for something: a checkout clerk to help me, the dentist to call me back to the office, a soy chai to be made. <a
href='http://shkspr.mobi/blog/index.php/2010/02/wordpress-mobile/'>[...]</a>]]></description> <content:encoded><![CDATA[<p><em>WordPress is only for people rich enough to buy a smartphone and cool enough to choose the right brand.  Right?</em></p><p><em> </em>From the <a
href="http://wordpress.org/development/2010/02/wordpress-on-the-go/">WordPress Blog</a>:</p><blockquote><p>I like to moderate comments when I’m waiting for something: a checkout clerk to help me, the dentist to call me back to the office, a soy chai to be made. I don’t lug my laptop everywhere I go,* so I love it that we have mobile apps that make this possible. I don’t know of any other blogging platform that has mobile apps for i<strong>Phone, Android <em>and</em> Blackberry</strong>. Do you? [emphasis added]</p></blockquote><p>So if you are one of the 85% of people without one of these high end devices, you are out of luck. No managing your WordPress Blog for you.</p><p><strong> </strong>This is &#8211; as PPK writes in <a
href="http://www.quirksmode.org/blog/archives/2010/02/the_iphone_obse.html">The iPhone Obsession</a> &#8211; <strong>a colossal mistake</strong>.  To ignore the majority of phone and focus significant developer resources on a minority of platforms just doesn&#8217;t make sense.</p><p>So, how do &#8220;ordinary&#8221; mobile users access their Blogs&#8217; admin area?</p><h2>Enter WordPress Mobile Pack</h2><p>The <a
href="http://wordpress.org/extend/plugins/wordpress-mobile-pack/">WordPress Mobile Pack</a> (which I help develop) doesn&#8217;t just make your blog viewable on <strong>all </strong>mobile browsers &#8211; it also makes your WordPress Dashboard options available.  Take a look at these screenshots.</p><div
id="attachment_1664" class="wp-caption aligncenter" style="width: 490px"><img
class="size-full wp-image-1664" title="Mobile Comment Moderation" src="http://shkspr.mobi/blog/wp-content/uploads/2010/02/Mobile-Comment-Moderation.png" alt="Mobile Comment Moderation" width="480" height="566" /><p
class="wp-caption-text">Mobile Comment Moderation</p></div><p>This page is simple enough to work on any phone with an HTML browser.  Sure, you can argue that it&#8217;s not particularly attractive &#8211; but that&#8217;s the point of <a
href="http://www.alistapart.com/articles/understandingprogressiveenhancement">progressive enhancement</a>.  Get it working, then add all the bell, whistles, JavaScript and CSS that you want for high end phones.</p><p>No need for an app or a widget. Bookmark your blog&#8217;s admin URL and you&#8217;re done.  You don&#8217;t need to worry about security updates, corporate policies which lock down your device, compatibility with the latest firmware, nothing.</p><p><strong>You only need a web browser.</strong></p><p>(The more astute among you will notice that this screenshot is from a BlackBerry &#8211; rest assured, this page works on all the phones I&#8217;ve tried it on.)</p><h2>Wait! There&#8217;s More!</h2><p>This is the front page of the Admin Panel. As you can see, just about everything you can do on the regular WordPress, you can do on mobile.  Create and edit posts, approve or trash comments, edit the settings.</p><div
id="attachment_1667" class="wp-caption aligncenter" style="width: 490px"><img
class="size-full wp-image-1667" title="Admin Panel" src="http://shkspr.mobi/blog/wp-content/uploads/2010/02/admin.png" alt="Admin Panel" width="480" height="611" /><p
class="wp-caption-text">Admin Panel</p></div><p>Almost every setting which is available to you in WordPress should also be available via mobile.</p><div
id="attachment_1666" class="wp-caption aligncenter" style="width: 490px"><img
class="size-full wp-image-1666" title="Settings" src="http://shkspr.mobi/blog/wp-content/uploads/2010/02/Settings.png" alt="Settings" width="480" height="320" /><p
class="wp-caption-text">Settings</p></div><h2>Prettifying It</h2><p>As I&#8217;ve said, this isn&#8217;t the prettiest pig in the sty. On an Android device, the site takes on a more attractive style sheet.</p><div
id="attachment_1671" class="wp-caption aligncenter" style="width: 330px"><img
class="size-full wp-image-1671" title="Android CSS" src="http://shkspr.mobi/blog/wp-content/uploads/2010/02/Andoid-CSS.png" alt="Android CSS" width="320" height="480" /><p
class="wp-caption-text">Android CSS</p></div><h2>So Why Use An App?</h2><p>I think apps have tremendous potential &#8211; they&#8217;re at their best when they are taking advantage of a phone&#8217;s unique hardware / software.  3D graphics, geo-location, accessing the camera etc.</p><p>But why would you spent time and money writing an app for moderating WordPress comments? It just doesn&#8217;t make sense!  You don&#8217;t take advantage of the platform, you duplicate effort across multiple devices, and for what?</p><p>If you want broad reach across <strong>all</strong> of your users&#8217; devices &#8211; write a website.  If you want to look cool, waste money and alienate the majority of your customer &#8211; build an app.</p><p>You can install WordPress Mobile Pack from <a
href="http://wordpress.org/extend/plugins/wordpress-mobile-pack/">http://wordpress.org/extend/plugins/wordpress-mobile-pack/</a></p><p><a
href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=1660&amp;md5=b0c56ec0c455816aa12c382d49677da9" title="Flattr" target="_blank"><img
src="http://shkspr.mobi/blog/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded> <wfw:commentRss>http://shkspr.mobi/blog/index.php/2010/02/wordpress-mobile/feed/</wfw:commentRss> <slash:comments>9</slash:comments> <atom:link rel="payment" href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=1660&amp;md5=b0c56ec0c455816aa12c382d49677da9" type="text/html" /> </item> <item><title>Why I Love Open Source</title><link>http://shkspr.mobi/blog/index.php/2009/12/why-i-love-open-source/</link> <comments>http://shkspr.mobi/blog/index.php/2009/12/why-i-love-open-source/#comments</comments> <pubDate>Sun, 06 Dec 2009 12:31:57 +0000</pubDate> <dc:creator>Terence Eden</dc:creator> <category><![CDATA[/etc/]]></category> <category><![CDATA[open source]]></category> <category><![CDATA[php]]></category> <category><![CDATA[plugins]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wpmp]]></category><guid
isPermaLink="false">http://shkspr.mobi/blog/?p=1336</guid> <description><![CDATA[There are many reasons to love Open Source Software.  It&#8217;s free (as in you pay nothing), it&#8217;s free (as in speech) and &#8211; perhaps my favourite reasons &#8211; it&#8217;s free (as in liberating). By liberating, I mean that one isn&#8217;t tied down to the product roadmap and release schedule of the developers.  If I find <a
href='http://shkspr.mobi/blog/index.php/2009/12/why-i-love-open-source/'>[...]</a>]]></description> <content:encoded><![CDATA[<p>There are many reasons to love <a
href="http://www.opensource.org/">Open Source Software</a>.  It&#8217;s free (as in you pay nothing), it&#8217;s free (as in speech) and &#8211; perhaps my favourite reasons &#8211; it&#8217;s free (as in liberating).</p><p>By liberating, I mean that one isn&#8217;t tied down to the product roadmap and release schedule of the developers.  If I find a bug, not only can I report it, I can fix it myself.  If I can&#8217;t fix it myself, I can often find someone to fix it for me.</p><p>Imagine writing to MicroSoft and saying &#8220;Please can you make this change to Office &#8211; just for me?&#8221;  If you ever got a response, it would be &#8220;No&#8221;.  To be fair, you may also get the same reply from <a
href="http://www.openoffice.org/">OpenOffice</a> &#8211; the free replacement for MicroSoft Office &#8211; but because OpenOffice is Open Source, you can scratch the itch yourself.</p><p>If your itch-scratching is useful, others will benefit from it.  If you are the only one benefiting from it, so what? You&#8217;re happier and more productive.</p><p>I use <a
href="http://wordpress.org/extend/plugins/wordpress-mobile-pack/">WordPress Mobile Pack</a>.  It creates a mobile version of this blog.  It&#8217;s a very easy to use and very powerful plugin.</p><p>Unfortunately, like all software, it has bugs.</p><div
id="attachment_1337" class="wp-caption aligncenter" style="width: 490px"><img
class="size-full wp-image-1337" title="WPMP Bug" src="http://shkspr.mobi/blog/wp-content/uploads/2009/12/Capture11_43_16.jpg" alt="WPMP Bug" width="480" height="320" /><p
class="wp-caption-text">WPMP Bug</p></div><p>What you&#8217;re seeing in the screenshot is WPMP picking up a shortcode and, rather than ignoring it, rendering it as human readable text within the teaser.  It&#8217;s ugly and confusing.</p><p>So, I <a
href="https://www.assembla.com/spaces/wordpress-mobile-pack/tickets/60-Teaser-shows-shortcode-tags">raised a bug report</a> and though &#8220;I bet I can fix this!&#8221;.  Now, I&#8217;m not the world&#8217;s most talented programmer &#8211; but with my knowledge of PHP and WordPress plugin architecture, I was able to locate the problem, fix it, test it and deploy it within half an hour.</p><pre>if(strpos($content, '[')!==false)
{
   $content = "Read more";
}</pre><p>That&#8217;s it.  Judicouly applied in the correct place made my problems disappear.</p><p>So, that&#8217;s why I love Open Source.  It places my destiny in my hands.</p><p><a
href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=1336&amp;md5=1d3e026bfa5a82ec0782bebc4fc5bafd" title="Flattr" target="_blank"><img
src="http://shkspr.mobi/blog/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded> <wfw:commentRss>http://shkspr.mobi/blog/index.php/2009/12/why-i-love-open-source/feed/</wfw:commentRss> <slash:comments>2</slash:comments> <atom:link rel="payment" href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=1336&amp;md5=1d3e026bfa5a82ec0782bebc4fc5bafd" type="text/html" /> </item> <item><title>WordPress Plugin &#8211; YouTube for XHTML and Mobile</title><link>http://shkspr.mobi/blog/index.php/2009/07/wordpress-plugin-youtube-xhtml-mobile/</link> <comments>http://shkspr.mobi/blog/index.php/2009/07/wordpress-plugin-youtube-xhtml-mobile/#comments</comments> <pubDate>Sun, 12 Jul 2009 16:41:20 +0000</pubDate> <dc:creator>Terence Eden</dc:creator> <category><![CDATA[mobile]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[youtube]]></category><guid
isPermaLink="false">http://shkspr.mobi/blog/?p=252</guid> <description><![CDATA[This blog is XHTML 1.0 Strict. Unfortunately, the code produced by YouTube for embeding their videos isn&#8217;t. Nor is it compatible with the dotMobi WordPress Mobile Pack. This scrap of code is a WordPress Plugin. it allows me to write something like [youtube id="p5ACl4iBGd0"] The code then outputs either the XHTML 1.0 embeding code or <a
href='http://shkspr.mobi/blog/index.php/2009/07/wordpress-plugin-youtube-xhtml-mobile/'>[...]</a>]]></description> <content:encoded><![CDATA[<p>This blog is XHTML 1.0 Strict.  Unfortunately, the code produced by YouTube for embeding their videos isn&#8217;t.  Nor is it compatible with the <a
href="http://http://mobiforge.com/running/story/the-dotmobi-wordpress-mobile-pack" class="broken_link">dotMobi WordPress Mobile Pack</a>.</p><p>This scrap of code is a WordPress Plugin.  it allows me to write something like<br
/> [<code>youtube id="p5ACl4iBGd0"</code>]</p><p>The code then outputs either the XHTML 1.0 embeding code or the XHML-MP code which links to the mobile version of the site</p><pre>function youtube_func($attr)
 {
 //Get the name of the WordPress Template being used
 $name = get_template();

 //If this *isn't* a mobile theme
 if(stristr($name, 'mobile') === FALSE)
 {
 //Link to embeded YouTube video source
 $ytURL = "http://www.youtube.com/v/" . $attr['id'];

 //XHTML 1.0 Strict way of embeding movies
 $s = "&lt;object type=\"application/x-shockwave-flash\" style=\"width:450px; height:366px;\" data=\"" . $ytURL . "\"&gt;"
 . "&lt;param name=\"movie\" value=\"". $ytURL . "\" /&gt;"
 . "&lt;/object&gt;";

 return $s;

 }
 else //This is a mobile theme
 {
 //Link to mobile YouTube
 $mYtURL = "http://m.youtube.com/watch?v=" . $attr['id'];
 //Image of the video
 $mYtIMG = "http://i.ytimg.com/vi/" . $attr['id'] . "/default.jpg?w=128&amp;amp;h=96";

 $s = "&lt;a href=\"" . $mYtURL . "\"&gt;"
 . "&lt;img src=\"" . $mYtIMG . "\" /&gt;"
 . "&lt;/a&gt;";

 return $s;
 }
 }
 add_shortcode('youtube', 'youtube_func');</pre><p>Many thanks to the <a
href="http://codex.wordpress.org/Shortcode_API">WordPress API</a>, this excellent <a
href="http://planetozh.com/blog/2008/03/wordpress-25-shortcodes-api-overview/">WordPress Plugin Tutorial</a>, and this <a
href="http://www.tools4noobs.com/online_tools/youtube_xhtml/">Valid XHTML YouTube embed code generator</a>.</p><p>You can <a
href="http://shkspr.mobi/wordpressplugins/wpyoutube.zip">download the plugin</a> while I wait for it to be <a
href="http://wordpress.org/extend/plugins/youtube-xhtml-and-mobile/">made available at WordPress</a>.</p><p><a
href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=252&amp;md5=5a0dd29bc0332e8cb66901b8c5b8dc4f" title="Flattr" target="_blank"><img
src="http://shkspr.mobi/blog/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded> <wfw:commentRss>http://shkspr.mobi/blog/index.php/2009/07/wordpress-plugin-youtube-xhtml-mobile/feed/</wfw:commentRss> <slash:comments>11</slash:comments> <atom:link rel="payment" href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=252&amp;md5=5a0dd29bc0332e8cb66901b8c5b8dc4f" type="text/html" /> </item> <item><title>Playing with WordPress</title><link>http://shkspr.mobi/blog/index.php/2009/05/playing-with-wordpress/</link> <comments>http://shkspr.mobi/blog/index.php/2009/05/playing-with-wordpress/#comments</comments> <pubDate>Sun, 24 May 2009 18:52:30 +0000</pubDate> <dc:creator>Terence Eden</dc:creator> <category><![CDATA[/etc/]]></category> <category><![CDATA[blogger]]></category> <category><![CDATA[meta]]></category> <category><![CDATA[wordpress]]></category><guid
isPermaLink="false">http://shkspr.mobi/blog/?p=3</guid> <description><![CDATA[I&#8217;ve been fairly happy using Blogger.com to compose and publish my blog posts.  But it&#8217;s become obvious that it&#8217;s an old and outdated platform which isn&#8217;t receiving as much love from Google as it should be. I&#8217;ve been persuaded by Torgo and others to play with WordPress. All I knew about it before today was <a
href='http://shkspr.mobi/blog/index.php/2009/05/playing-with-wordpress/'>[...]</a>]]></description> <content:encoded><![CDATA[<p>I&#8217;ve been fairly happy using <a
href="http://www.blogger.com">Blogger.com</a> to compose and publish my blog posts.  But it&#8217;s become obvious that it&#8217;s an old and outdated platform which isn&#8217;t receiving as much love from Google as it should be.</p><p>I&#8217;ve been persuaded by <a
href="http://www.torgo.com/blog/">Torgo</a> and others to play with <a
href="http://wordpress.org">WordPress</a>. All I knew about it before today was that every blogger on twitter keeps moaning about it &#8211; so I really wasn&#8217;t quite sure what to expect.</p><p>Well, 15 minutes after downloading, I&#8217;m faced with an excellent interface, some very useful options and a system that suits me fine.</p><p>I really like what I see here, so, on with the show :-) Time to configure the hell out of it.</p><p><a
href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=3&amp;md5=be7dcca6cfdeb6b4da7d7cd5f4aeb661" title="Flattr" target="_blank"><img
src="http://shkspr.mobi/blog/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded> <wfw:commentRss>http://shkspr.mobi/blog/index.php/2009/05/playing-with-wordpress/feed/</wfw:commentRss> <slash:comments>2</slash:comments> <atom:link rel="payment" href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=3&amp;md5=be7dcca6cfdeb6b4da7d7cd5f4aeb661" type="text/html" /> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (Requested URI is rejected)

Served from: www.shkspr.mobi @ 2012-02-07 10:38:20 -->
