<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>WordPress Visual QuickStart Guide</title>
	
	<link>http://www.wordpressvqs.com</link>
	<description>Companion Site for the WordPress Visual QuickStart Guide by Jessica Neuman Beck and Matt Beck, from PeachPit Press.</description>
	<lastBuildDate>Wed, 25 Aug 2010 05:17:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/WordpressVisualQuickstart" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="wordpressvisualquickstart" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Custom Headers in WordPress 3.0</title>
		<link>http://www.wordpressvqs.com/wordpress/custom-headers-in-wordpress-3-0/</link>
		<comments>http://www.wordpressvqs.com/wordpress/custom-headers-in-wordpress-3-0/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 05:17:56 +0000</pubDate>
		<dc:creator>Jessica Neuman Beck</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress 3.0]]></category>
		<category><![CDATA[custom header]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[new features]]></category>
		<category><![CDATA[site customizations]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wordpress 3.0]]></category>

		<guid isPermaLink="false">http://www.wordpress28vqs.com/?p=198</guid>
		<description><![CDATA[Tired of your old header? Want to switch it for something fresh and new? WordPress 3.0 makes it easy. You just need to make a few changes to your functions.php and header.php files, and then you can switch headers as often as you want. You&#8217;ll need FTP access to your site&#8217;s theme files (you can [...]]]></description>
			<content:encoded><![CDATA[<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> <p><a href="http://www.wordpressvqs.com/wp-content/uploads/2010/08/amym-headers.jpg" rel="lightbox[198]"><img src="http://www.wordpressvqs.com/wp-content/uploads/2010/08/amym-headers-300x266.jpg" alt="" title="headers" width="300" height="266" class="alignleft size-medium wp-image-279" /></a>Tired of your old header? Want to switch it for something fresh and new? WordPress 3.0 makes it easy. You just need to make a few changes to your functions.php and header.php files, and then you can switch headers as often as you want.</p>
<p>You&#8217;ll need FTP access to your site&#8217;s theme files (you can do some of this in the Appearance Editor, but it&#8217;s easiest if you can upload and download as necessary). You&#8217;ll also need to know the height, width, and location of your current or desired header, and you&#8217;ll need an image or graphic to use for your new header.</p>
<p>First, we need to set up the function that will define the size of the header image and activate the Headers link in the Appearance menu of your admin screen. Open your functions.php file and paste the following:</p>
<p><code>define( 'HEADER_IMAGE', '%s/images/header.png' ); // The default header located in themes folder<br />
define( 'HEADER_IMAGE_WIDTH', apply_filters( '', 845 ) ); // Width of header<br />
define( 'HEADER_IMAGE_HEIGHT', apply_filters( '', 365 ) ); // Height of header<br />
define( 'NO_HEADER_TEXT', true );<br />
add_custom_image_header( '', 'admin_header_style' ); // This Enables the Appearance &gt; Header<br />
// Following Code is for Styling the Admin Side<br />
if ( ! function_exists( 'admin_header_style' ) ) :<br />
function admin_header_style() {<br />
?&gt;<br />
&lt;style type=&quot;text/css&quot;&gt;<br />
#headimg {<br />
height: &lt;?php echo HEADER_IMAGE_HEIGHT; ?&gt;px;<br />
width: &lt;?php echo HEADER_IMAGE_WIDTH; ?&gt;px;<br />
}<br />
#headimg h1, #headimg #desc {<br />
display: none;<br />
}<br />
&lt;/style&gt;<br />
&lt;?php<br />
}<br />
endif;<br />
</code></p>
<p>Make sure you change the dimensions to match the size of the header on your actual site. Note that you will also need to upload a default header to your theme&#8217;s image directory (if you wish to use your existing header as the default, make sure you change the Header Image name in the function).</p>
<p>Next, you need to display the new header on your site. In your header.php file, add the following: </p>
<p><code><br />
&lt;img src=&quot;&lt;?php header_image(); ?&gt;&quot; width=&quot;&lt;?php echo HEADER_IMAGE_WIDTH; ?&gt;&quot; height=&quot;&lt;?php echo HEADER_IMAGE_HEIGHT; ?&gt;&quot; alt=&quot;Header Image&quot; /&gt;<br />
</code></p>
<p>Change the alt text to reflect your image or site.</p>
<p><a href="http://www.wordpressvqs.com/wp-content/uploads/2010/08/custom-header-1.jpg" rel="lightbox[198]"><img src="http://www.wordpressvqs.com/wp-content/uploads/2010/08/custom-header-1-300x256.jpg" alt="" title="custom header admin" width="300" height="256" class="alignleft size-medium wp-image-280" /></a>Log in to your WordPress admin screen and click &#8220;Appearance.&#8221; You will now see a link called Header. Click that to access your Custom Header section. You&#8217;ll see your default or current header as well as instructions for uploading a new one. You can also revert to your default header or eliminate your header altogether (note that there is no undo for those options, so choose carefully).</p>
<p>To upload a new header, browse for the image or graphic that you want to use (make sure it is at least as wide and high as your specified header dimensions) and click &#8216;Upload.&#8217; If you need to crop your image, you can do so in the next step. Move the bounding box around until you are happy with the new header image and click Crop &#038; Save.</p>
<p>That&#8217;s it! Your new header image will appear on your site, and you can switch it out as frequently as you like.</p>
<p>Questions? Problems? Leave a comment and we’ll do our best to help you out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpressvqs.com/wordpress/custom-headers-in-wordpress-3-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Registration is OPEN for WordCamp PDX 2010!</title>
		<link>http://www.wordpressvqs.com/wordpress/registration-is-open-for-wordcamp-pdx-2010/</link>
		<comments>http://www.wordpressvqs.com/wordpress/registration-is-open-for-wordcamp-pdx-2010/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 17:39:51 +0000</pubDate>
		<dc:creator>Jessica Neuman Beck</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[giveaways]]></category>
		<category><![CDATA[speaking gigs]]></category>
		<category><![CDATA[wordcamp]]></category>

		<guid isPermaLink="false">http://www.wordpress28vqs.com/?p=244</guid>
		<description><![CDATA[Don&#8217;t miss out on the chance to attend WordCamp PDX this year &#8211; there are TONS of speakers (I&#8217;m one of them!) and some pretty fab giveaways, including copies of our book! Registration is open at the official WordCamp site. Don&#8217;t forget to tell them your shirt size.]]></description>
			<content:encoded><![CDATA[<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> <p><a href="http://www.wordpress28vqs.com/wp-content/uploads/2010/08/wordpressvisualquickstartcover.jpg" rel="lightbox[244]"><img class="alignright size-medium wp-image-266" title="WordPress Visual QuickStart" src="http://www.wordpress28vqs.com/wp-content/uploads/2010/08/wordpressvisualquickstartcover-233x300.jpg" alt="" width="163" height="210" /></a>Don&#8217;t miss out on the chance to attend WordCamp PDX this year &#8211; there are TONS of speakers (I&#8217;m one of them!) and some pretty fab giveaways, including copies of our book!</p>
<p><a href="http://www.wordcampportland.org/2010/08/2010-wordcamp-registration-opens/">Registration is open at the official WordCamp site.</a> Don&#8217;t forget to tell them your shirt size.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpressvqs.com/wordpress/registration-is-open-for-wordcamp-pdx-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Menus in WordPress 3.0</title>
		<link>http://www.wordpressvqs.com/wordpress/custom-menus-in-wordpress-3-0/</link>
		<comments>http://www.wordpressvqs.com/wordpress/custom-menus-in-wordpress-3-0/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 21:50:15 +0000</pubDate>
		<dc:creator>Jessica Neuman Beck</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress 3.0]]></category>
		<category><![CDATA[custom menus]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[new features]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wordpress 3.0]]></category>

		<guid isPermaLink="false">http://www.wordpress28vqs.com/?p=200</guid>
		<description><![CDATA[One of the coolest new features in WordPress 3.0 is the ability to add custom menus. In this post we&#8217;ll walk you through the process of adding custom menu support to your existing them as well as setting up the custom menus in the admin section. 1. Add the register_nav_menus function to your functions.php file. [...]]]></description>
			<content:encoded><![CDATA[<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> <p>One of the coolest new features in WordPress 3.0 is the ability to add custom menus. In this post we&#8217;ll walk you through the process of adding custom menu support to your existing them as well as setting up the custom menus in the admin section.</p>

<a href='http://www.wordpressvqs.com/wordpress/custom-menus-in-wordpress-3-0/attachment/old-menu/' title='old menu'><img width="150" height="150" src="http://www.wordpressvqs.com/wp-content/uploads/2010/08/old-menu-150x150.png" class="attachment-thumbnail" alt="old menu" title="old menu" /></a>
<a href='http://www.wordpressvqs.com/wordpress/custom-menus-in-wordpress-3-0/attachment/functions/' title='functions'><img width="150" height="150" src="http://www.wordpressvqs.com/wp-content/uploads/2010/08/functions-150x150.png" class="attachment-thumbnail" alt="functions" title="functions" /></a>
<a href='http://www.wordpressvqs.com/wordpress/custom-menus-in-wordpress-3-0/attachment/menus/' title='Menus'><img width="150" height="150" src="http://www.wordpressvqs.com/wp-content/uploads/2010/08/Menus-150x150.png" class="attachment-thumbnail" alt="Menus" title="Menus" /></a>
<a href='http://www.wordpressvqs.com/wordpress/custom-menus-in-wordpress-3-0/attachment/theme-locations/' title='Theme Locations'><img width="150" height="150" src="http://www.wordpressvqs.com/wp-content/uploads/2010/08/Theme-Locations-150x150.png" class="attachment-thumbnail" alt="Theme Locations" title="Theme Locations" /></a>

<p>1. Add the register_nav_menus function to your functions.php file.</p>
<p>In your functions.php file, add the following code:<br />
<code>register_nav_menus( array(<br />
'main-menu' =&gt; __( 'Main Menu' ),<br />
) );</code><br />
This will allow your theme to recognize and register a custom navigation menu.</p>
<p>2. Replace the code for your current navigation menu (in your header.php file) with wp_nav_menu.</p>
<p>Open your header.php file and find the section that calls up your navigation menu. It may look something like this:</p>
<p><code>&lt;?php wp_list_pages(); ?&gt;</code><br />
Replace that code with this one:</p>
<p><code>&lt;?php wp_nav_menu( array( 'theme_location' =&gt; 'main-menu' ) ); ?&gt;</code><br />
Using the above code will replace your existing navigation menu with one you specify in the new Menus section (see below).</p>
<p>3. Log in to the admin area of your WordPress site and go to Appearance &gt; Menus.</p>
<p>4. Create a new menu. Give your menu a name (this will not be displayed on your site) and add links by choosing from your pages, categories, or custom URLs. Once you&#8217;ve added all the links you want to include in your navigation menu, click &#8220;Save Menu.&#8221;</p>
<p>5. In the top left of the Menus section, you will see a box labeled &#8220;Theme Locations&#8221; which should say the following: <em>Your theme supports 1 menu. Select which menu you would like to use.</em> In the drop-down, choose the menu you just created and hit &#8220;Save.&#8221;</p>
<p>That&#8217;s it! You&#8217;ve just set up custom menus for your WordPress theme. You can add, delete or re-order your menu items any time you want.</p>
<p>Additionally, you can add custom menus to your sidebar, too &#8211; without touching a single line of code. Just add a new custom menu by clicking the plus sign next to your existing menu. Once you&#8217;ve got your new menu named and some menu items in place, go to Appearance &gt; Widgets and choose the Custom Menu widget. Drag it to your sidebar, give it a name, and you&#8217;re ready to roll!</p>
<p>Questions? Problems? Leave a comment and we&#8217;ll do our best to help you out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpressvqs.com/wordpress/custom-menus-in-wordpress-3-0/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordCamp Portland</title>
		<link>http://www.wordpressvqs.com/wordpress/wordcamp-portland/</link>
		<comments>http://www.wordpressvqs.com/wordpress/wordcamp-portland/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 18:47:28 +0000</pubDate>
		<dc:creator>Matt Beck</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.wordpress28vqs.com/?p=195</guid>
		<description><![CDATA[Jessica will be speaking at WordCamp Portland! The full schedule hasn&#8217;t been announced yet, but the event is September 18-19 2010 at Webtrends in Portland, OR Business Blogging for Non-Writers Learn to make the most of your business blog, even if writing isn’t your strong suit. http://www.wordcampportland.org/speakers/ Check it out if you are in the [...]]]></description>
			<content:encoded><![CDATA[<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> <p>Jessica will be speaking at WordCamp Portland!</p>
<p>The full schedule hasn&#8217;t been announced yet, but the event is</p>
<p>September 18-19 2010 at Webtrends in Portland, OR</p>
<p><strong>Business Blogging for Non-Writers</strong></p>
<p>Learn to make the most of your business blog, even if writing isn’t your strong suit.</p>
<p><a href="http://www.wordcampportland.org/speakers/">http://www.wordcampportland.org/speakers/</a></p>
<p>Check it out if you are in the area.</p>
<p>Hope to see you there!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpressvqs.com/wordpress/wordcamp-portland/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>South by Southwest</title>
		<link>http://www.wordpressvqs.com/wordpress/south-by-southwest/</link>
		<comments>http://www.wordpressvqs.com/wordpress/south-by-southwest/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 23:52:56 +0000</pubDate>
		<dc:creator>Matt Beck</dc:creator>
		
		<guid isPermaLink="false">http://www.wordpress28vqs.com/uncategorized/south-by-southwest/</guid>
		<description><![CDATA[We (well Matt anyway) will be attending SXSWi 2010 again this year down in Austin, TX. Tons of great talks for WordPress designers. Hope to see you there!]]></description>
			<content:encoded><![CDATA[<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> <p>We (well Matt anyway) will be attending SXSWi 2010 again this year down in Austin, TX.</p>
<p>Tons of great talks for WordPress designers.</p>
<p>Hope to see you there!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpressvqs.com/wordpress/south-by-southwest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.9 photo features explained.</title>
		<link>http://www.wordpressvqs.com/wordpress/wordpress-2-9-photo-features-explained/</link>
		<comments>http://www.wordpressvqs.com/wordpress/wordpress-2-9-photo-features-explained/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 19:15:13 +0000</pubDate>
		<dc:creator>Matt Beck</dc:creator>
		
		<guid isPermaLink="false">http://www.wordpress28vqs.com/?p=190</guid>
		<description><![CDATA[WordPress 2.9 includes some new photo manipulation features, basic cropping and the like. Aaron Hockley, (blogger, photographer and the Tech Editor for our book) has an excellent post walking through some of the upcoming features in WordPress 2.9 on his site Social Photo Talk. Check out his post on the new WordPress Photo Image Features [...]]]></description>
			<content:encoded><![CDATA[<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> <p>WordPress 2.9 includes some new photo manipulation features, basic cropping and the like.</p>
<p>Aaron Hockley, (blogger, photographer and the Tech Editor for our book) has an excellent post walking through some of the upcoming features in WordPress 2.9 on his site Social Photo Talk.</p>
<p>Check out his post on the new <a href="http://www.socialphototalk.com/wordpress-photo-image-features/">WordPress Photo Image Features</a> here.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpressvqs.com/wordpress/wordpress-2-9-photo-features-explained/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New contest: win a copy of the book!</title>
		<link>http://www.wordpressvqs.com/wordpress/new-contest-win-a-copy-of-the-book/</link>
		<comments>http://www.wordpressvqs.com/wordpress/new-contest-win-a-copy-of-the-book/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 20:21:13 +0000</pubDate>
		<dc:creator>Jessica Neuman Beck</dc:creator>
				<category><![CDATA[VQS]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[couldbe studios]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[Win]]></category>

		<guid isPermaLink="false">http://www.wordpress28vqs.com/uncategorized/new-contest-win-a-copy-of-the-book/</guid>
		<description><![CDATA[Our next contest is up: become a fan of our company, couldbe studios, on Facebook &#8211; once we reach 100 fans we&#8217;ll pick someone at random to win a copy of the WordPress Visual QuickStart Guide!]]></description>
			<content:encoded><![CDATA[<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> <p><a href="http://www.facebook.com/pages/Portland-OR/couldbe-studios/8090396629?ref=nf"><img src="http://www.wordpress28vqs.com/wp-content/uploads/2009/12/Facebook-thumb.jpg" height="146" align="left" width="180" /></a>Our next contest is up: <a href="http://www.facebook.com/pages/Portland-OR/couldbe-studios/8090396629?ref=nf" title="couldbe studios on Facebook">become a fan of our company, couldbe studios, on Facebook</a> &#8211; once we reach 100 fans we&#8217;ll pick someone at random to win a copy of the WordPress Visual QuickStart Guide! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpressvqs.com/wordpress/new-contest-win-a-copy-of-the-book/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress won the 2009 Open Source CMS award!</title>
		<link>http://www.wordpressvqs.com/wordpress/wordpress-won-the-2009-open-source-cms-award/</link>
		<comments>http://www.wordpressvqs.com/wordpress/wordpress-won-the-2009-open-source-cms-award/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 22:51:45 +0000</pubDate>
		<dc:creator>Matt Beck</dc:creator>
		
		<guid isPermaLink="false">http://www.wordpress28vqs.com/?p=177</guid>
		<description><![CDATA[Over on the WordPress blog, Matt Mullenweg announced that WordPress won the 2009 Open Source CMS award. Congratulations to all the hard working folks who make WordPress happen. Matt&#8217;s post about winning the award can be found here. This is the first time that WordPress has won that award, and I think Matt explained the [...]]]></description>
			<content:encoded><![CDATA[<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> <p>Over on the WordPress blog, Matt Mullenweg announced that WordPress won the <a href="http://www.packtpub.com/award">2009 Open Source CMS award</a>. Congratulations to all the hard working folks who make WordPress happen.</p>
<p>Matt&#8217;s post about <a href="http://wordpress.org/development/2009/11/wordpress-wins-cms-award/">winning the award</a> can be found here.</p>
<p>This is the first time that WordPress has won that award, and I think Matt explained the significance very well.</p>
<blockquote><p><em>&#8220;Every day thousands of new people are embracing WordPress to power not just their blogs but entire sites and communities without compromising on usability or scalability (as would be the case with a legacy CMS). Every member of the WordPress community, from core developer to beginning user, should be proud to be part of this momentum: congratulations to us all!&#8221;</em></p></blockquote>
<p>So, congrats to the WordPress team on a well deserved acknowledgment.</p>
<p>-Matt Beck</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpressvqs.com/wordpress/wordpress-won-the-2009-open-source-cms-award/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>get the book!</title>
		<link>http://www.wordpressvqs.com/wordpress/get-the-book/</link>
		<comments>http://www.wordpressvqs.com/wordpress/get-the-book/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 22:05:23 +0000</pubDate>
		<dc:creator>Jessica Neuman Beck</dc:creator>
				<category><![CDATA[VQS]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[the book]]></category>
		<category><![CDATA[Win]]></category>

		<guid isPermaLink="false">http://www.wordpress28vqs.com/uncategorized/get-the-book/</guid>
		<description><![CDATA[Itching for a copy of our new book, the WordPress Visual QuickStart Guide? Of course you are, and we&#8217;re here to help. The book hits stores on November 23, and over the course of the next couple of weeks we&#8217;ll be giving away copies to celebrate. For now, you can sign up for our email [...]]]></description>
			<content:encoded><![CDATA[<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> <p>Itching for a copy of our new book, the <a href="http://www.peachpit.com/store/product.aspx?isbn=0321679210">WordPress Visual QuickStart Guide</a>? Of course you are, and we&#8217;re here to help.</p>
<p>
<div>The book hits stores on November 23, and over the course of the next couple of weeks we&#8217;ll be giving away copies to celebrate.</div>
</p>
<p>
<div>For now, you can <a href="http://www.facebook.com/pages/Portland-OR/couldbe-studios/8090396629?v=app_4949752878&#038;ref=ts" title="get our newsletter">sign up for our email newsletter</a> over on our Facebook page; one lucky winner will be chosen at the end of the day tomorrow (November 20). And while you&#8217;re there, <a href="http://www.facebook.com/pages/Portland-OR/couldbe-studios" title="be our fan!">become a fan of couldbe studios</a>!</div>
</p>
<p>
<div>More to come&#8230;keep your eye on this space.</div></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpressvqs.com/wordpress/get-the-book/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coming Soon</title>
		<link>http://www.wordpressvqs.com/wordpress/coming-soon/</link>
		<comments>http://www.wordpressvqs.com/wordpress/coming-soon/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 23:29:01 +0000</pubDate>
		<dc:creator>Jessica Neuman Beck</dc:creator>
				<category><![CDATA[VQS]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://www.wordpress28vqs.com/uncategorized/coming-soon/</guid>
		<description><![CDATA[Our book&#8217;s release date is right around the corner &#8211; in fact, we just got our advance copies in the mail today! Check it out:]]></description>
			<content:encoded><![CDATA[<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> <p>Our book&#8217;s release date is right around the corner &#8211; in fact, we just got our advance copies in the mail today! Check it out:</p>
<p><a href="http://www.wordpress28vqs.com/wp-content/uploads/2009/11/Photo_on_2009-11-11_at_12-full.43__3.jpg" class="image-link" rel="lightbox[171]"><img class="linked-to-original" src="http://www.wordpress28vqs.com/wp-content/uploads/2009/11/Photo_on_2009-11-11_at_12-thumb.43__3.jpg" height="315" align="left" width="380" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpressvqs.com/wordpress/coming-soon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
