<?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>marketplex.net &#187; design</title>
	<atom:link href="http://marketplex.net/tag/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://marketplex.net</link>
	<description>Internet Marketing from Scratch and on a Budget</description>
	<lastBuildDate>Mon, 28 Mar 2011 20:27:35 +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>WordPress 3.0 twentyten_filter_wp_title conflict with All in One SEO</title>
		<link>http://marketplex.net/2010/06/25/wordpress-3-0-twentyten_filter_wp_title-conflict-with-all-in-one-seo/</link>
		<comments>http://marketplex.net/2010/06/25/wordpress-3-0-twentyten_filter_wp_title-conflict-with-all-in-one-seo/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 10:35:17 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Web Sites and Blogs]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://marketplex.net/?p=335</guid>
		<description><![CDATA[Just upgraded to WordPress 3.0? Are you using the TwentyTen theme? Do you have All in One SEO installed? Are your page titles now screwed up? TwentyTen is a very clean and practical theme and, unlike the previous default, is perfectly acceptable as a production theme. I&#8217;ve created a child theme 95% based on TwentyTen [...]]]></description>
			<content:encoded><![CDATA[<p>Just upgraded to WordPress 3.0? Are you using the TwentyTen theme? Do you have All in One SEO installed? Are your page titles now screwed up?</p>
<p>TwentyTen is a very clean and practical theme and, unlike the previous default, is perfectly acceptable as a production theme. I&#8217;ve created a child theme 95% based on TwentyTen as a rapid deployment template and it works really well apart from one niggle with the page titles.<br />
<span id="more-335"></span><br />
TwentyTen tries to pick up some of the title rewriting capability found in plugins like All in One SEO pack but I prefer the latter and would rather WordPress leave my titles alone. There&#8217;s also an error whereby the site name is jammed up against the page name without any spacing and this looks ugly and could have implications for SEO.</p>
<p>WordPress does the rewriting using the function <strong>twentyten_filter_wp_title()</strong> found in the theme&#8217;s <strong>functions.php</strong> file. It hooks <strong>wp_title</strong> to achieve the end result. An easy way to undo the rewrite would be to disable the filter in the parent theme but on the next upgrade the filter would be restored.</p>
<p>So I&#8217;ve applied <strong>remove_filter</strong> in my child theme&#8217;s <strong>header.php</strong> file and that should do the trick no matter how many times TwentyTen is upgraded.</p>
<p>Getting to the point, here&#8217;s the relevant section in my child <strong>header.php</strong>, the code you need to add is in red:</p>
<p><code><br />
&lt;title&gt;&lt;?php</p>
<p>	<span style="color:red;font-weight:bold;">/**<br />
	 * Stop TwentyTen parent theme rewriting the page titles<br />
	 * Leave this job to All in One SEO<br />
	 */<br />
	remove_filter( 'wp_title', 'twentyten_filter_wp_title', 10 );</span></p>
<p>	/*<br />
	 * Print the &lt;title&gt; tag based on what is being viewed.<br />
	 * We filter the output of wp_title() a bit -- see<br />
	 * twentyten_filter_wp_title() in functions.php.<br />
	 */<br />
	wp_title( '|', true, 'right' );</p>
<p>	?&gt;&lt;/title&gt;<br />
</code></p>
<p>Obviously this only applies if you are using a child theme based on TwentyTen. If you are hacking the parent directly then comment out the following in the main theme <strong>functions.php</strong> file to achieve the same result:</p>
<p><code><br />
// add_filter( 'wp_title', 'twentyten_filter_wp_title', 10, 2 );<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://marketplex.net/2010/06/25/wordpress-3-0-twentyten_filter_wp_title-conflict-with-all-in-one-seo/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A New Theme</title>
		<link>http://marketplex.net/2010/01/07/a-new-theme/</link>
		<comments>http://marketplex.net/2010/01/07/a-new-theme/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 16:02:10 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Web Sites and Blogs]]></category>
		<category><![CDATA[artisteer]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://marketplex.net/?p=25</guid>
		<description><![CDATA[Getting rid of the default WordPress theme was easy enough and creating a new one was dead easy with Artisteer, a theme designer that does all the work for you by offering an endless cycle of suggestions until it hits on one that&#8217;s half decent. A few tweaks later you save the theme as a [...]]]></description>
			<content:encoded><![CDATA[<p>Getting rid of the default WordPress theme was easy enough and creating a new one was dead easy with <a href="http://www.artisteer.com/">Artisteer</a>, a theme designer that does all the work for you by offering an endless cycle of suggestions until it hits on one that&#8217;s half decent. A few tweaks later you save the theme as a ZIP and upload it to your blog. Job done.<br />
<span id="more-25"></span><br />
A lot of marketers I have been reading urge you not to get hung up on website design and fancy graphics and the like, and I think they are correct. But the basic WordPress theme suggests no effort whatsoever has been made to appeal to the visitor. Using Artisteer was the solution to getting a facelift for a small investment in money but a big saving in time. Worth it.</p>
<p>Artisteer.com also runs an affiliate scheme but insists non-US citizens provide tax status information during the sign-up. I have no idea what my status should be or what forms I should fill so I decided not to proceed. I&#8217;ll find out all about that sort of stuff at a later date.</p>
]]></content:encoded>
			<wfw:commentRss>http://marketplex.net/2010/01/07/a-new-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.261 seconds -->

