<?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>Wired Advanced Media</title>
	<atom:link href="http://wiredadvancedmedia.com/feed" rel="self" type="application/rss+xml" />
	<link>http://wiredadvancedmedia.com</link>
	<description>Web. Media. Solutions.</description>
	<lastBuildDate>Thu, 28 Feb 2013 13:22:57 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>How to remove borders in Thesis</title>
		<link>http://wiredadvancedmedia.com/blog/how-to-remove-borders-in-thesis</link>
		<comments>http://wiredadvancedmedia.com/blog/how-to-remove-borders-in-thesis#comments</comments>
		<pubDate>Mon, 20 Aug 2012 07:35:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://wiredadvancedmedia.com/?p=207</guid>
		<description><![CDATA[Removing interior rules and navigation rules in Thesis: From Jim&#8217;s Web Design Tutorials: http://www.jimfmunro.com/thesis/removing-borders-thesis/]]></description>
				<content:encoded><![CDATA[<p>Removing interior rules and navigation rules in Thesis:<br />
From Jim&#8217;s Web Design Tutorials: <a href="http://www.jimfmunro.com/thesis/removing-borders-thesis/" target="_blank">http://www.jimfmunro.com/thesis/removing-borders-thesis/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wiredadvancedmedia.com/blog/how-to-remove-borders-in-thesis/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thoughts on WordPress permalink structure</title>
		<link>http://wiredadvancedmedia.com/blog/thoughts-on-wordpress-permalink-structure</link>
		<comments>http://wiredadvancedmedia.com/blog/thoughts-on-wordpress-permalink-structure#comments</comments>
		<pubDate>Mon, 20 Aug 2012 07:31:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://wiredadvancedmedia.com/?p=204</guid>
		<description><![CDATA[A great post from Digging Into WordPress on permalink structure. Worth a read: So really, don’t use just /%postname%/ as your permalink structure.]]></description>
				<content:encoded><![CDATA[<p>A great post from <a href="http://digwp.com/" target="_blank">Digging Into WordPress</a> on permalink structure. Worth a read:</p>
<p><a href="http://digwp.com/2011/06/dont-use-postname/" target="_blank">So really, don’t use just /%postname%/ as your permalink structure.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wiredadvancedmedia.com/blog/thoughts-on-wordpress-permalink-structure/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Add Navigation Menus in Thesis</title>
		<link>http://wiredadvancedmedia.com/blog/how-to-add-navigation-menus-in-thesis</link>
		<comments>http://wiredadvancedmedia.com/blog/how-to-add-navigation-menus-in-thesis#comments</comments>
		<pubDate>Mon, 20 Aug 2012 07:28:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://wiredadvancedmedia.com/?p=201</guid>
		<description><![CDATA[Thanks to Heather Acton for this code. Original post is here Note: change smart quotes to regular, if necessary, or the code won&#8217;t work in PHP. Adding a Secondary Nav Menu in Thesis Add the following to custom_functions.php: register_nav_menu(&#8216;secondary&#8217;, &#8216;Secondary Menu&#8217;); function secondary_menu() { wp_nav_menu( array( &#8216;container_class&#8217; => &#8216;secondary_menu&#8217;, &#8216;theme_location&#8217; => &#8216;secondary&#8217; ) ); } [...]]]></description>
				<content:encoded><![CDATA[<p>Thanks to <a href="http://heatheracton.com/" target="_blank">Heather Acton</a> for this code. Original post is <a href="http://heatheracton.com/how-to-add-additional-navigation-menus-in-thesis/" target="_blank">here</a></p>
<p><em>Note: change smart quotes to regular, if necessary, or the code won&#8217;t work in PHP.</em></p>
<h2>Adding a Secondary Nav Menu in Thesis</h2>
<p>Add the following to custom_functions.php:</p>
<p>register_nav_menu(&#8216;secondary&#8217;, &#8216;Secondary Menu&#8217;);<br />
function secondary_menu() {<br />
wp_nav_menu( array( &#8216;container_class&#8217; => &#8216;secondary_menu&#8217;, &#8216;theme_location&#8217; => &#8216;secondary&#8217; ) );<br />
}<br />
add_action(&#8216;thesis_hook_after_header&#8217;,'secondary_menu&#8217;);</p>
<h2>Adding a Footer Nav Menu in Thesis</h2>
<p>Add the following to custom_functions.php:</p>
<p>register_nav_menu(&#8216;footer&#8217;, &#8216;Footer Menu&#8217;);<br />
function footer_menu() {<br />
wp_nav_menu( array( &#8216;container_class&#8217; => &#8216;footer_menu&#8217;, &#8216;theme_location&#8217; => &#8216;footer&#8217; ) );<br />
}<br />
add_action(&#8216;thesis_hook_before_footer&#8217;,'footer_menu&#8217;);</p>
]]></content:encoded>
			<wfw:commentRss>http://wiredadvancedmedia.com/blog/how-to-add-navigation-menus-in-thesis/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is It Really Cake?</title>
		<link>http://wiredadvancedmedia.com/portfolio/is-it-really-cake</link>
		<comments>http://wiredadvancedmedia.com/portfolio/is-it-really-cake#comments</comments>
		<pubDate>Fri, 09 Dec 2011 10:44:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://wiredadvancedmedia.com/?p=144</guid>
		<description><![CDATA[Is It Really Cake? is a custom cake company serving the Bay Area of California. Website: IsItReallyCake.com]]></description>
				<content:encoded><![CDATA[<p>Is It Really Cake? is a custom cake company serving the Bay Area of California.</p>
<p><strong>Website:</strong> <a href="http://isitreallycake.com">IsItReallyCake.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wiredadvancedmedia.com/portfolio/is-it-really-cake/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bella Cosa Construction</title>
		<link>http://wiredadvancedmedia.com/portfolio/bella-cosa-construction</link>
		<comments>http://wiredadvancedmedia.com/portfolio/bella-cosa-construction#comments</comments>
		<pubDate>Fri, 09 Dec 2011 10:40:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://wiredadvancedmedia.com/?p=140</guid>
		<description><![CDATA[Bella Cosa Construction is a full-service construction company serving California&#8217;s Bay Area. Website: BellaCosaInc.com]]></description>
				<content:encoded><![CDATA[<p>Bella Cosa Construction is a full-service construction company serving California&#8217;s Bay Area.</p>
<p><strong>Website:</strong> <a href="http://bellacosainc.com/">BellaCosaInc.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wiredadvancedmedia.com/portfolio/bella-cosa-construction/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Premier Appliance Services</title>
		<link>http://wiredadvancedmedia.com/portfolio/premier-appliance-services</link>
		<comments>http://wiredadvancedmedia.com/portfolio/premier-appliance-services#comments</comments>
		<pubDate>Fri, 09 Dec 2011 10:36:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://wiredadvancedmedia.com/?p=134</guid>
		<description><![CDATA[Premier Appliance Services is an appliance repair and installation specialist in the Portland, Oregon / Vancouver, Washington area. Website: PremierApplianceServices.com]]></description>
				<content:encoded><![CDATA[<p>Premier Appliance Services is an appliance repair and installation specialist in the Portland, Oregon / Vancouver, Washington area.</p>
<p><strong>Website:</strong> <a href="http://premierapplianceservices.com">PremierApplianceServices.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wiredadvancedmedia.com/portfolio/premier-appliance-services/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Direct Placement</title>
		<link>http://wiredadvancedmedia.com/portfolio/direct-placement</link>
		<comments>http://wiredadvancedmedia.com/portfolio/direct-placement#comments</comments>
		<pubDate>Tue, 16 Aug 2011 11:31:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://wiredadvancedmedia.com/?p=104</guid>
		<description><![CDATA[Direct Placement specializes in search engine placement (SEP) and website design, and is a Wired Advanced Media partner.]]></description>
				<content:encoded><![CDATA[<p><a href="http://directplacement.co" target="_blank">Direct Placement</a> specializes in search engine placement (SEP) and website design, and is a Wired Advanced Media partner.</p>
]]></content:encoded>
			<wfw:commentRss>http://wiredadvancedmedia.com/portfolio/direct-placement/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maruyama</title>
		<link>http://wiredadvancedmedia.com/portfolio/maruyama</link>
		<comments>http://wiredadvancedmedia.com/portfolio/maruyama#comments</comments>
		<pubDate>Tue, 16 Aug 2011 11:26:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://wiredadvancedmedia.com/?p=95</guid>
		<description><![CDATA[Maruyama is a commercial-grade outdoor power equipment company that distributes products world-wide.]]></description>
				<content:encoded><![CDATA[<p>Maruyama is a commercial-grade outdoor power equipment company that distributes products world-wide.</p>
]]></content:encoded>
			<wfw:commentRss>http://wiredadvancedmedia.com/portfolio/maruyama/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wired Oregon</title>
		<link>http://wiredadvancedmedia.com/portfolio/wired-oregon</link>
		<comments>http://wiredadvancedmedia.com/portfolio/wired-oregon#comments</comments>
		<pubDate>Sat, 04 Dec 2010 03:25:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Network]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://wiredadvancedmedia.com/?p=42</guid>
		<description><![CDATA[Wired Oregon covers the people, places and politics that make our state great. Visit us at <a href="http://wiredoregon.com">WiredOregon.com</a>.]]></description>
				<content:encoded><![CDATA[<p>Wired Oregon covers the people, places and politics that make our state great. Visit us at <a href="http://WiredOregon.com" target="_blank">WiredOregon.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://wiredadvancedmedia.com/portfolio/wired-oregon/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PlanIt Navigator</title>
		<link>http://wiredadvancedmedia.com/portfolio/planit-navigator</link>
		<comments>http://wiredadvancedmedia.com/portfolio/planit-navigator#comments</comments>
		<pubDate>Sat, 04 Dec 2010 03:21:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Network]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://wiredadvancedmedia.com/?p=39</guid>
		<description><![CDATA[PlanIt Navigator is your online travel resource guide. Visit us at <a href="http://planitnavigator.com">PlanitNavigator.com</a>.]]></description>
				<content:encoded><![CDATA[<p>PlanIt Navigator is your online travel resource guide. Visit us at <a href="http://planitnavigator.com">PlanitNavigator.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://wiredadvancedmedia.com/portfolio/planit-navigator/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
