<?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>The Blog House&#187; The Blog House LTD</title>
	<atom:link href="http://thebloghouse.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://thebloghouse.com</link>
	<description>we know WordPress</description>
	<lastBuildDate>Mon, 26 Jul 2010 17:56:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to Customize Twenty Ten</title>
		<link>http://thebloghouse.com/blog/wordpress/tutorials/customize-twenty-ten/</link>
		<comments>http://thebloghouse.com/blog/wordpress/tutorials/customize-twenty-ten/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 23:50:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Customise Twenty Ten]]></category>
		<category><![CDATA[Customize Twenty Ten]]></category>
		<category><![CDATA[Twenty Ten Theme]]></category>

		<guid isPermaLink="false">http://thebloghouse.com/?p=914</guid>
		<description><![CDATA[Twenty Ten is the new default theme for WordPress 3.0 and makes great use of all the new features this new major release brings so it seems to make sense to start with this as a base for your next WordPress based project&#8217;s theme yeah? Well before you start jumping in and hacking the code [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fwordpress%2Ftutorials%2Fcustomize-twenty-ten%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fwordpress%2Ftutorials%2Fcustomize-twenty-ten%2F" height="61" width="51" /></a></div><h2><a href="http://thebloghouse.com/files/2010/06/Twenty-Ten-WordPress-Theme.jpg" rel="lightbox[914]"><img class="size-full wp-image-901 aligncenter" title="Twenty Ten Theme" src="http://thebloghouse.com/files/2010/06/Twenty-Ten-WordPress-Theme.jpg" alt="Twenty Ten WordPress Theme" width="470" height="175" /></a></h2>
<p>Twenty Ten is the new default theme for WordPress 3.0 and makes great use of all the new features this new major release brings so it seems to make sense to start with this as a base for your next WordPress based project&#8217;s theme yeah?</p>
<p>Well before you start jumping in and hacking the code you need to realise Twenty Ten is in fact a <strong>Parent Theme</strong> and you can make ALL your required CSS / Function and Template modifications in a subdirectory so when the main Twenty Theme is updated all those tweaks and hacks won&#8217;t be lost for ever &#8211; cool ay?</p>
<p>Of course WordPress do a great job of explaining how to start working with Child Themes using Twenty Ten as the base <a title="Child themes" href="http://codex.wordpress.org/Child_Themes" target="_blank">here</a> but we thought we would summarise our take on this for those who need the bare minimum to get started:  Got your favourite PHP / CSS editor ready? Great let&#8217;s begin&#8230;</p>
<h3>How to set up your directory should be set up</h3>
<p>The most important aspect of getting your new child theme working is making sure you have the required files in the correct place like this:</p>
<ul>
<li> <strong>web root</strong>
<ul>
<li> <span style="color: #ff0000;"><strong>wp-content</strong></span>
<ul>
<li> <span style="color: #ff0000;"><strong>themes</strong></span> (directory where all your themes are)
<ul>
<li> <span style="color: #ff0000;"><strong>twentyten</strong></span> (directory where the Twenty Ten Theme is)</li>
<li> <span style="color: #ff0000;"><strong>your-new-twentyten-child</strong></span> (directory of your new child  theme &#8211; you can call this anything!)
<ul>
<li> <span style="color: #ff0000;"><strong>style.css</strong> </span>(the only 100% required file in a child theme which <strong>must be named <em>style.css</em></strong>)</li>
<li><strong>functions.php</strong> &#8211; this is optional but is the place to add new functions to your theme. It is <strong>loaded in addition to the parent’s functions.php</strong> and right <em>before</em> the parent’s file.</li>
<li><strong>header.php</strong>, <strong>index.php</strong> etc &#8211; Again you don&#8217;t need these but the best thing to do is make a copy of the original Twenty Ten Theme files you want to modify and store them here. Then edit these copies to remove things that you cannot do via the nice new options within the WordPress Admin area and be safe in the knowledge you can always just delete your copies to get back to the Twenty Ten Originals</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h3>What needs to be in the child style.css file as a bare minimum</h3>
<p>The following is the standard</p>
<pre>/*
Theme Name:     My Twenty Ten Child
Theme URI:      http: //thebloghouse.com
Description:    My child theme for the Twenty Ten theme
Author:                Andy
Author URI:     http: //thebloghouse.com
Template:       twentyten
Version:        0.1.0
*/

@import url("../twentyten/style.css");

/* The following CSS is our example - you do not need to change your site's title link colour */

#site-title a {
    color: #009900;
}
</pre>
<h3>Seems easy enough yeah?</h3>
<p>Only thing you need to watch out for is if you want to say change the way Twenty Ten deals with certain CSS values you need to make sure you copy the full original CSS into your style CSS and change each value. By this we mean say you want to change the nice new Twenty Ten footer. You would find the following in the original style.css and copy this to your style.css file:</p>
<pre>#colophon {
 border-top: 2pt solid #000;
 }</pre>
<p>However simply removing the <em><strong>border-top: 2pt solid #000;</strong></em> part will <strong>NOT</strong> remove the border &#8211; you would need to have the following <strong><em>none</em></strong> value to override the original style.css:</p>
<pre>#colophon {
 border-top: <span style="color: #ff0000;"><strong>none</strong></span>;
 }</pre>
<p>Obviously this is a very quick and simplistic look at the great work that everyone who has worked on and contributed to WordPress 3.0 and the Twenty Ten theme but if you are struggling with the basics hopefully the info above might help.</p>
<p>If not I would suggest reading the documentation again <a title="Child themes" href="http://codex.wordpress.org/Child_Themes" target="_blank">here</a>, check out the 1 hour + video below by Steve Bruner and his WordPress 3.0 Customization Techniques or feel free to post a question in the comments below.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="360" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="guid=cYSkh46r&amp;width=640&amp;height=360&amp;locksize=no&amp;dynamicseek=false&amp;qc_publisherId=p-18-mFEk4J448M" /><param name="src" value="http://v.wordpress.com/wp-content/plugins/video/flvplayer.swf?ver=1.21" /><param name="wmode" value="transparent" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="360" src="http://v.wordpress.com/wp-content/plugins/video/flvplayer.swf?ver=1.21" allowfullscreen="true" wmode="transparent" flashvars="guid=cYSkh46r&amp;width=640&amp;height=360&amp;locksize=no&amp;dynamicseek=false&amp;qc_publisherId=p-18-mFEk4J448M"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://thebloghouse.com/blog/wordpress/tutorials/customize-twenty-ten/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft irrelevant in 5 years?</title>
		<link>http://thebloghouse.com/blog/random/microsoft-irrelevant-in-5-years/</link>
		<comments>http://thebloghouse.com/blog/random/microsoft-irrelevant-in-5-years/#comments</comments>
		<pubDate>Sat, 01 May 2010 12:45:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[dead]]></category>
		<category><![CDATA[epitaph]]></category>
		<category><![CDATA[google android]]></category>
		<category><![CDATA[irrelevant]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://thebloghouse.com/?p=899</guid>
		<description><![CDATA[I am a technology fan first and foremost and secondly a long time Microsoft user of their products and software as I have grown up, like most of my generation (I am 29) using Microsoft technology in both my daily work and personal life as Microsoft / Windows put simply was that ubiquitous that computing [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Frandom%2Fmicrosoft-irrelevant-in-5-years%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Frandom%2Fmicrosoft-irrelevant-in-5-years%2F" height="61" width="51" /></a></div><h2><a href="http://thebloghouse.com/files/2010/05/Microsoft-Problems.jpg" rel="lightbox[899]"><img class="size-full wp-image-901 aligncenter" title="Microsoft Problems" src="http://thebloghouse.com/files/2010/05/Microsoft-Problems.jpg" alt="Microsoft Problems" width="470" height="175" /></a></h2>
<p>I am a technology fan first and foremost and secondly a long time Microsoft user of their products and software as I have grown up, like most of my generation (I am 29) using Microsoft technology in both my daily work and personal life as Microsoft / Windows put simply was that ubiquitous that computing WAS Microsoft to most people. However since Vista, and especially since Bill left back in July 2008 Microsoft seem intent on shooting themselves in the foot and not moving forward hence the main thrust of this post &#8211; I think unless something drastic happens in the next 6 months they will be irrelevant within 5 years at most.</p>
<h3>A brief history of (my) time with Microsoft Software</h3>
<p>My own personal relationship with Microsoft started back with Windows 95 and has continued since then via Windows 98, 2000, XP, Vista, WHS (<a title="Windows Home Server" href="http://www.microsoft.com/windows/products/winfamily/windowshomeserver/default.mspx" target="_blank">Windows Home Server</a>) , 7, their server operating systems (2000, 2003 and 2008), the Office suite of software, their programming languages  (ASP, .NET) and their mobile versions CE, Pocket PC, Mobile, 6, 6.1, 6.5. Splitting things up let me explain where I think  Microsoft have done well and where they have stagnated or even worse gone backwards:</p>
<h3>Home Operating Systems</h3>
<p>Windows lead the world back in the early home computing days of Windows 98 and effectively created what we all take for granted as working home computers these days. They then released Millennium Edition which was possibly their lowest point and reached their peak with Windows XP. XP worked well most of the time, was intuitive and fairly light &#8211; certainly when compared to the heavy best that replaced it &#8211; Vista. So many things were wrong with Vista it was unfunny but after Service Pack 1 at least you could use your computer almost as well as it worked with the older Windows XP. Then Windows 7 came along, which is what I am typing this post on and it has honestly been a reliable operating system so far but there are still small glitches like thumbnails not showing as soon as I go into my folders, shutting down gives me warnings about background tasks still running and this is all on a fairly high end Core i7 based desktop with 3GB triple channel Ram and fancy graphics card.</p>
<p>Yesterday, I tried the latest version of Ubuntu &#8211; 10.04 Lucid Lynx and honestly if I hadn’t have paid for Windows 7 already and I was building a new PC I would use this as my default operating system as everything just works, it looks nice and it hides the geeky parts of the underlying Linux back end very well.</p>
<p>From Windows Vista onwards I think Microsoft have lost their way in the digital, tech hungry homes of today. Windows 7 is good but if we are all honest it is what Vista should have been all those years ago and it hasn’t exactly been a game changer has it?</p>
<p>The only product that has excited me and been innovative over the last few years has been something called <a title="Windows Home Server" href="http://www.microsoft.com/windows/products/winfamily/windowshomeserver/default.mspx" target="_blank">Windows Home Server</a> which explained simply, sits on your home network sharing files, allowing remote access to your files and computers as well as most importantly, automatically backs up all your home computer’s each night. A lot of you probably won’t have heard of this though as Microsoft never really promoted it to the mainstream and things don’t look like they will be changing anytime soon as the new version, codenamed Vail (see the excellent <a title="Windows Home Server Vail" href="http://www.wegotserved.com/whs-vail-preview/" target="_blank">We Got Served preview</a>) has not got the killer feature for me and other long term WHS users have wanted – Windows Media Centre built in to allow you to stick a TV Tuner in and record TV and stream it wherever you want within your home and externally.</p>
<p>Put simply Windows 7 will be my last Microsoft operating system with an old copy of Windows XP or Windows 7 on a virtual machine somewhere for the rare old programs that I might need to use someday.</p>
<h3>Server operating systems</h3>
<p>Windows 2003 is fairly rock solid as most will agree and 2008 is fine by all accounts but as a seasoned web developer I made the decision 2 years ago to abandon the bloat of Windows ASP.NET and start developing in PHP which lead me to look at Linux based Web servers in more depth. All the various Linux based web servers have their pros and cons but going with Ubuntu or Red Hat as your particular flavour and then using <a title="Nginx" href="http://en.wikipedia.org/wiki/Nginx" target="_blank">Nginx</a> (Apache if you can’t use this) and the various PHP caching systems like XCache make Windows Server and IIS look very slow, inefficient, bloated and tired. Finally we get onto the latest trend in web servers and their OS  &#8211; <a title="VPS Servers" href="http://en.wikipedia.org/wiki/Virtual_private_server" target="_blank">VPS</a> based systems which allow you to have your own self contained chunk of a server to act and control effectively like your own dedicated server at a fraction of the price. Microsoft based Operating Systems are again being left behind in this modern technological revolution as all the leading web hosting companies if they are honest with you will tell you, Windows Server is simply not ready for prime time, reliable VPS based hosting unlike the free Linux based VPS solutions. These Linxu based VPS servers are put simply reducing web site owner&#8217;s costs AND also allowing instant scalbibily in temrs of badnwidth, ram, CPU cycles at a touch of a web admin panel and again we will likely not be going near another Windows Server based server again unless we have to 100% support ASP.</p>
<h3>Software</h3>
<p>MS Office which is £200+ here in  the UK is simply not worth that as Open Office is so good at dealing with your  Word, Excel and PowerPoint documents and FREE that again I can&#8217;t see once people try it why they would go the paid Microsoft route again. Email used to be one of the main reasons people stumped up the cash to get the full Office email software but this can now be dealt with  either by the impressive and also free Mozilla Thunderbird or if you  have faith in ‘the cloud’ Gmail is by all accounts is great. Does anyone  really care what Office 2010 will do? I am convinced it will be an  incremental upgrade not a revolution and will again be effectively the same product as Office 97 which WAS good for it&#8217;s time but is simply dated today.</p>
<h3>Mobile (Cell) Phone Operating Systems</h3>
<p>Having started back with the Windows based PDAs then moved on to the latest Windows Mobile based smart phones nothing has fundamentally changed with the Windows Mobile OS since the first Pocket PC devices back in 2002. Yes there have been new features stuck on top but fundamentally you could be given a PDA with Pocket PC on from 2002 and a Windows Mobile 6.1 phone from 2009 and you would essentially be looking at the same thing. That folks, is now 8 years of incremental updates whilst the World has moved on, worked together on open source based systems and there has been genuine innovation via software companies like Google, Apple and hardware manufacturers like HTC and Motorola. The iPhone was released in 2007 – nearly 3 years ago now and it is only now just been resoundingly bettered by the Google Android powered <a title="HTC Desire Deals" href="http://google-phonedeals.com/buy/HTC-Desire/" target="_blank">HTC Desire</a> which by the way, having just purchased myself prompted me to write this post as there is simply nothing based on Windows Mobile that comes remotely close to it.</p>
<p>The only reason I have personally persevered until now with Windows Mobile is the amazing work the Windows Mobile Communities like <a title="XDA Devlopers" href="http://forum.xda-developers.com/index.php" target="_blank">XDA Developers</a> do creating custom ROMS and software you can add and flash to your Windows Mobile based devices to sit on top and mask the awful underlying Windows Mobile OS.</p>
<h3>What about Windows Phone 7 you say?</h3>
<p>Well to me and many other’s it looks like an Apple rip off, has <strong>less</strong> functionality than Windows Mobile (no cut and paste!), is locked down to such an extent that there will simply be no development community and will be released in 6 months+ when the world and their dog have got used to Android or Apple based smart phones. I honesty think Windows Phone 7 will be one of the most embarrassing and irrelevant product launches in tech history.</p>
<h3>So the future&#8230;</h3>
<p>The future might have been looking slightly better if projects like the genuinely interesting and innovative <a title="Courier Tablet Cancelled" href="http://gizmodo.com/5527442/microsoft-cancels-innovative-courier-tablet-project" target="_blank">Courier Tablet hadn’t been cancelled</a>, Bing was actually doing well in it’s own right not because it isn’t set as the default search engine on Windows machines and Microsoft had a decent strategy in the era of smartphones and innovation taking place monthly or yearly at worst, not every 5 years or more like Microsoft seem to be able to deal with. Microsoft have rested on their past glories for too long and when people look back on 2010 I think they will say this year was the year that cemented their epitaph as a previous generation big time tech company who couldn&#8217;t innovate and react quickly enough to their smaller, smarter and predominantly open source rivals.</p>
]]></content:encoded>
			<wfw:commentRss>http://thebloghouse.com/blog/random/microsoft-irrelevant-in-5-years/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free Events Plugin with full PayPal integration</title>
		<link>http://thebloghouse.com/blog/wordpress/plugins/free-events-plugin-with-full-paypal-integration/</link>
		<comments>http://thebloghouse.com/blog/wordpress/plugins/free-events-plugin-with-full-paypal-integration/#comments</comments>
		<pubDate>Sat, 17 Apr 2010 10:35:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Event Plugin]]></category>
		<category><![CDATA[Free Events Plugin]]></category>
		<category><![CDATA[Online payment plugin]]></category>
		<category><![CDATA[PayPal]]></category>

		<guid isPermaLink="false">http://thebloghouse.com/?p=879</guid>
		<description><![CDATA[This is just a quick heads up to anyone that is looking for a WordPress Plugin that handles event registrations with or without online payments. Advanced Events Registration by Seth Shoultes is FREE in it&#8217;s basic (still advanced) form and allows you to take online registrations for events, meetings, conference and seminars etc and accept [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fwordpress%2Fplugins%2Ffree-events-plugin-with-full-paypal-integration%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fwordpress%2Fplugins%2Ffree-events-plugin-with-full-paypal-integration%2F" height="61" width="51" /></a></div><p>This is just a quick heads up to anyone that is looking for a <a title="WordPress Plugin Development" href="http://thebloghouse.com/wordpress/plugins/">WordPress Plugin</a> that handles event registrations with or without online payments.</p>
<p><a title="Free Events Registration and Payment Plugin" href="http://wordpress.org/extend/plugins/advanced-events-registration/" target="_blank">Advanced Events Registration</a> by <a title="Seth Shoultes" href="http://shoultes.net/" target="_blank">Seth Shoultes</a> is FREE in it&#8217;s basic (still advanced) form and allows you to take online registrations for events, meetings, conference and seminars etc and accept PayPal payments for these.</p>
<p>It also allows you to capture the registering persons contact information  to the WordPress database as well as provides the ability to send the  registrar to your PayPal payment site for online collection of event  fees. PayPal payments are captured to the database using the PayPal  Standard IPN.</p>
<p>Reporting features provide a list of events, list of attendees, and  the ability to export all attendees AND any answers they have given to custom questions to Excel (.CSV). We highly recommend you check it out.<br />
<a href="http://thebloghouse.com/files/2010/04/Advanced-Events-Registration-Plugin.jpg" rel="lightbox[879]"><img title="Advanced Events Registration Plugin" src="http://thebloghouse.com/files/2010/04/Advanced-Events-Registration-Plugin.jpg" alt="Advanced Events Registration Plugin" width="750" height="299" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://thebloghouse.com/blog/wordpress/plugins/free-events-plugin-with-full-paypal-integration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Override WordPress Shortcode to show [ ] brackets</title>
		<link>http://thebloghouse.com/blog/asides/override-wordpress-shortcode-to-show-brackets/</link>
		<comments>http://thebloghouse.com/blog/asides/override-wordpress-shortcode-to-show-brackets/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 21:43:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[brackets]]></category>
		<category><![CDATA[override]]></category>
		<category><![CDATA[shortcode]]></category>

		<guid isPermaLink="false">http://thebloghouse.com/?p=865</guid>
		<description><![CDATA[Override the default WordPress Shortcode processing to show [ ] brackets for your plugin shortcode examples]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fasides%2Foverride-wordpress-shortcode-to-show-brackets%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fasides%2Foverride-wordpress-shortcode-to-show-brackets%2F" height="61" width="51" /></a></div><p>Just came across an annoying issue where we needed to show some examples of our new <a title="WordPress Price Comparison Plugin" href="http://comparepress.com/" target="_blank">WordPress price comparison plugin</a> WordPress on a site that has the plugin installed which means everytime you try to show the examples you get the plugin content!</p>
<p>The easiest way we have found to fix this is do the following:</p>
<p>Use the following numeric character references instead of normal [ ] as this way WordPress doesn&#8217;t process your plugins shortcode</p>
<p>e.g. &amp;#91;showphones make=&#8217;htc&#8217; &amp;#93; is the same as [showphones make='htc']</p>
<p>So just remember to replace [ with &amp;#91; and ] with &amp;#93;</p>
]]></content:encoded>
			<wfw:commentRss>http://thebloghouse.com/blog/asides/override-wordpress-shortcode-to-show-brackets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Blog House Expands</title>
		<link>http://thebloghouse.com/blog/our-news/new-wordpress-services/</link>
		<comments>http://thebloghouse.com/blog/our-news/new-wordpress-services/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 14:18:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://thebloghouse.com/?p=801</guid>
		<description><![CDATA[Today we are pleased to announce we are now able to offer the following WordPress services &#8216;in house&#8217;: PSD to custom WordPress Theme Bespoke WordPress Theme Design and coding Logo Design Why now I hear you ask&#8230; Well, since soft launching the company last year we have been so busy with our first few clients [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Four-news%2Fnew-wordpress-services%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Four-news%2Fnew-wordpress-services%2F" height="61" width="51" /></a></div><p><a href="http://thebloghouse.com/files/2010/03/BMP-Logo.jpg" rel="lightbox[801]"><img class="alignright size-full wp-image-822" title="BMP-Logo" src="http://thebloghouse.com/files/2010/03/BMP-Logo.jpg" alt="BMP Logo" width="87" height="106" /></a>Today we are pleased to announce we are now able to offer the following WordPress services &#8216;in house&#8217;:</p>
<ul>
<li><a title="PSD to WordPress Theme" href="http://thebloghouse.com/design/psd-to-wordpress-theme/">PSD to custom WordPress Theme</a></li>
<li>Bespoke <a title="WordPress Theme Design" href="http://thebloghouse.com/design/wordpress-theme/">WordPress Theme Design</a> and coding</li>
<li><a title="Logo Design" href="../design/logo/">Logo Design</a></li>
</ul>
<p>Why now I hear you ask&#8230;</p>
<p>Well, since soft launching the company last year we have been so busy with our first few clients sites and our top secret <a title="WordPress Plugin" href="http://thebloghouse.com/wordpress/plugins/">WordPress plugin</a> that we put off offering anything publicly as we simply couldn&#8217;t guarantee any sort of reliable time frame to turn this extra work around.</p>
<p>However, today that has all changed as Adam and Paul have officially come on board to work as part of The Blog House so <a title="Contact The Blog House" href="http://thebloghouse.com/contact/">get in touch</a> if you have been wanting to deal with a WordPress company based in the UK that can handle everything WordPress related.</p>
]]></content:encoded>
			<wfw:commentRss>http://thebloghouse.com/blog/our-news/new-wordpress-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress App for Google Android</title>
		<link>http://thebloghouse.com/blog/wordpress/news/wordpress-app-for-google-android/</link>
		<comments>http://thebloghouse.com/blog/wordpress/news/wordpress-app-for-google-android/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 19:33:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[google android]]></category>
		<category><![CDATA[google wordpress app]]></category>
		<category><![CDATA[wordpress android]]></category>
		<category><![CDATA[wordpress app]]></category>

		<guid isPermaLink="false">http://thebloghouse.com/?p=625</guid>
		<description><![CDATA[WordPress have just relased a fine looking App for Google Android mobile phones. The initial release has focused on giving you the ability to manage your blog while on the go. Features include the ability to: Configure and manage multiple blogs Comment moderation including the ability to reply to comments Create and Edit Posts including [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fwordpress%2Fnews%2Fwordpress-app-for-google-android%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fwordpress%2Fnews%2Fwordpress-app-for-google-android%2F" height="61" width="51" /></a></div><p><a href="http://thebloghouse.com/files/2010/02/WordPress-Android-App.jpg" rel="lightbox[625]"><img class="alignright" title="WordPress-Android-App" src="http://thebloghouse.com/files/2010/02/WordPress-Android-App.jpg" alt="WordPress Android App" width="470" height="175" /></a>WordPress have just relased a fine looking App for Google Android mobile phones.</p>
<p>The initial release has focused on giving you the ability to manage  your blog while on the go.</p>
<p>Features include the ability to:</p>
<ul>
<li>Configure and manage multiple blogs</li>
<li>Comment moderation including the ability to reply to comments</li>
<li>Create and Edit Posts including categories, tags and photos</li>
<li>Create and Edit Pages</li>
<li>Get notified of new comments in the Android notification bar</li>
</ul>
<p>Here is a brief video showing the app in action:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="360" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="guid=73jyWIka&amp;width=640&amp;height=360&amp;qc_publisherId=p-18-mFEk4J448M" /><param name="src" value="http://v.wordpress.com/wp-content/plugins/video/flvplayer.swf?ver=1.15" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="360" src="http://v.wordpress.com/wp-content/plugins/video/flvplayer.swf?ver=1.15" allowfullscreen="true" flashvars="guid=73jyWIka&amp;width=640&amp;height=360&amp;qc_publisherId=p-18-mFEk4J448M"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://thebloghouse.com/blog/wordpress/news/wordpress-app-for-google-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dreamweaver CS5</title>
		<link>http://thebloghouse.com/blog/asides/dreamweaver-cs5/</link>
		<comments>http://thebloghouse.com/blog/asides/dreamweaver-cs5/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 19:07:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[cs5]]></category>
		<category><![CDATA[dreanweaver cs5]]></category>
		<category><![CDATA[html5]]></category>

		<guid isPermaLink="false">http://thebloghouse.com/?p=580</guid>
		<description><![CDATA[Here is a quick post with a link to some cool HTML5 features of Dreaamweaver 5:]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fasides%2Fdreamweaver-cs5%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fasides%2Fdreamweaver-cs5%2F" height="61" width="51" /></a></div><p>Here is a quick post with a link to some cool HTML5 features of Dreaamweaver 5:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/v69S22ZBBqA&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=fr_FR&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/v69S22ZBBqA&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=fr_FR&amp;feature=player_embedded&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://thebloghouse.com/blog/asides/dreamweaver-cs5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Looking for a complete WordPress book?</title>
		<link>http://thebloghouse.com/blog/wordpress/books/looking-for-a-complete-wordpress-book/</link>
		<comments>http://thebloghouse.com/blog/wordpress/books/looking-for-a-complete-wordpress-book/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 09:21:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Digging Into WordPress]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress book]]></category>

		<guid isPermaLink="false">http://thebloghouse.com/?p=564</guid>
		<description><![CDATA[Someone asked us to recommend a WordPress book that wasn&#8217;t for newbies but also wasn&#8217;t almost written in binary and we think the best book that fits this middle of the WordPress road position is the great Digging Into WordPress book which is available in both print AND pdf form. Written by Chris Coyier and [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fwordpress%2Fbooks%2Flooking-for-a-complete-wordpress-book%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fwordpress%2Fbooks%2Flooking-for-a-complete-wordpress-book%2F" height="61" width="51" /></a></div><div id="attachment_565" class="wp-caption alignright" style="width: 160px"><a href="https://www.e-junkie.com/ecom/gb.php?cl=88539&amp;c=ib&amp;aff=102983" target="ejejcsingle"><img class="size-thumbnail wp-image-565 " title="Digging into WordPress" src="http://thebloghouse.com/files/2010/01/realbook-150x150.png" alt="Digging into WordPress" width="150" height="150" /></a><p class="wp-caption-text">Digging into WordPress - best WordPress book around currently?</p></div>
<p>Someone asked us to recommend a WordPress book that wasn&#8217;t for newbies but also wasn&#8217;t almost written in binary and we think the best book that fits this middle of the WordPress road position is the great Digging Into WordPress book which is available in both print AND pdf form.</p>
<p>Written by <a title="Learn more about author Chris Coyier" href="http://digwp.com/chris-coyier/" target="ejejcsingle">Chris Coyier</a> and <a title="Learn more about author Jeff Starr" href="http://digwp.com/jeff-starr/" target="ejejcsingle">Jeff Starr</a> the pdf version comes with a lifetime subscription meaning you will be emailed ALL updated versions of the book for free &#8211; pretty cool.</p>
<p><a href="https://www.e-junkie.com/ecom/gb.php?cl=88539&amp;c=ib&amp;aff=102983" target="ejejcsingle">Click here to find out more Digging Into WordPress</a></p>
<p>NOTE: We have added an affiliated link above so we will makes a few $ if you buy via this but honestly we are not linking to this for a few $ but because we think this book is currently the best WordPress book around.</p>
]]></content:encoded>
			<wfw:commentRss>http://thebloghouse.com/blog/wordpress/books/looking-for-a-complete-wordpress-book/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Chris Morris&#8217;s first feature film &#8211; a Jihadist comedy</title>
		<link>http://thebloghouse.com/blog/asides/chris-morriss-first-feature-film-a-jihadist-comedy/</link>
		<comments>http://thebloghouse.com/blog/asides/chris-morriss-first-feature-film-a-jihadist-comedy/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 11:44:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Chris Morris]]></category>

		<guid isPermaLink="false">http://thebloghouse.com/?p=561</guid>
		<description><![CDATA[Take a look at an exclusive Guardian clip of Chris Morris&#8217;s first feature film from the &#8220;jihadist comedy&#8221; Four lions: http://www.guardian.co.uk/film/video/2010/jan/21/chris-morris-four-lions-sundance]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fasides%2Fchris-morriss-first-feature-film-a-jihadist-comedy%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fasides%2Fchris-morriss-first-feature-film-a-jihadist-comedy%2F" height="61" width="51" /></a></div><p>Take a look at an exclusive Guardian clip of Chris Morris&#8217;s first feature film from the &#8220;<strong>jihadist comedy</strong>&#8221; Four lions:</p>
<p><a title="Jihadist Comedy" href="http://www.guardian.co.uk/film/video/2010/jan/21/chris-morris-four-lions-sundance" target="_blank">http://www.guardian.co.uk/film/video/2010/jan/21/chris-morris-four-lions-sundance</a></p>
]]></content:encoded>
			<wfw:commentRss>http://thebloghouse.com/blog/asides/chris-morriss-first-feature-film-a-jihadist-comedy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great single page web design</title>
		<link>http://thebloghouse.com/blog/asides/great-single-page-web-design/</link>
		<comments>http://thebloghouse.com/blog/asides/great-single-page-web-design/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 10:22:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asides]]></category>

		<guid isPermaLink="false">http://thebloghouse.com/?p=557</guid>
		<description><![CDATA[Best single page web site design I have seen in a while &#8211; check it out: http://www.basilgloo.com/]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fasides%2Fgreat-single-page-web-design%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fasides%2Fgreat-single-page-web-design%2F" height="61" width="51" /></a></div><p>Best single page web site design I have seen in a while &#8211; check it out:<a title="http://www.basilgloo.com/" href="http://www.basilgloo.com/" target="_blank"> http://www.basilgloo.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://thebloghouse.com/blog/asides/great-single-page-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->