<?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>Pressed Words &#187; Themes</title>
	<atom:link href="http://pressedwords.com/category/themes/feed/" rel="self" type="application/rss+xml" />
	<link>http://pressedwords.com</link>
	<description>News and commentary about all things WordPress</description>
	<lastBuildDate>Thu, 11 Jun 2009 03:54:22 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.1</generator>
	<item>
		<title>Paged Comments and the SEO Problem: A Solution</title>
		<link>http://pressedwords.com/solving-wordpress-seo-paged-comments-problem/</link>
		<comments>http://pressedwords.com/solving-wordpress-seo-paged-comments-problem/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 20:26:03 +0000</pubDate>
		<dc:creator><![CDATA[Austin Matzko]]></dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[Paged comments]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://pressedwords.com/?p=163</guid>
		<description><![CDATA[The paged comments feature new in WordPress 2.7 is handy for reducing page size, but it introduces the search engine optimization (SEO) problem of putting the same content on different permalinks, as some have pointed out. That&#8217;s because the complete post would appear at all of these permalinks: http://example.com/my-post-permalink/ http://example.com/my-post-permalink/comment-page-1/ http://example.com/my-post-permalink/comment-page-2/ My solution in this [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>The paged comments feature new in WordPress 2.7 is handy for reducing page size, but it introduces the search engine optimization (SEO) problem of putting the same content on different permalinks, as <a href="http://comox.textdrive.com/pipermail/wp-hackers/2008-December/023189.html">some have pointed out</a>. That&#8217;s because the complete post would appear at all of these permalinks:</p>
<p><code>http://example.com/my-post-permalink/</code><br />
<code>http://example.com/my-post-permalink/comment-page-1/</code><br />
<code>http://example.com/my-post-permalink/comment-page-2/</code></p>
<p>My solution in this short plugin is to have all but the main permalink show an excerpt of the post, with a link back to the permalink page.</p>
<pre>
&lt;?php

/* 
 Plugin Name: SEO for Paged Comments
 Version: 1.1
 Description: Reduce SEO problems when using WordPress&#039;s paged comments.
 Author: Austin Matzko
 Author URI: http://www.pressedwords.com
 */

function seo_paged_comments_content_filter($t = &#039;&#039;) {
	if ( function_exists(&#039;get_query_var&#039;) ) {
		$cpage = intval(get_query_var(&#039;cpage&#039;));
		if ( ! empty( $cpage ) ) {
			remove_filter(&#039;the_content&#039;, &#039;seo_paged_comments_content_filter&#039;);
			$t = get_the_excerpt();
			$t .= sprintf(&#039;&lt;p&gt;&lt;a href="%1$s"&gt;%2$s&lt;/a&gt;&lt;/p&gt;&#039;, get_permalink(), get_the_title());
		}
	}
	return $t;
}

add_filter(&#039;the_content&#039;, &#039;seo_paged_comments_content_filter&#039;);
</pre>
<p><strong>Download:</strong><br />
<a href='http://downloads.wordpress.org/plugin/seo-for-paged-comments.zip'>seo-for-paged-comments.zip</a></p>
<p>[<strong>Updated</strong> January 30, 2009]</p>
]]></content:encoded>
			<wfw:commentRss>http://pressedwords.com/solving-wordpress-seo-paged-comments-problem/feed/</wfw:commentRss>
		<slash:comments>89</slash:comments>
		</item>
		<item>
		<title>WordPress Themes and Vagueness</title>
		<link>http://pressedwords.com/wordpress-themes-and-vagueness/</link>
		<comments>http://pressedwords.com/wordpress-themes-and-vagueness/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 14:05:35 +0000</pubDate>
		<dc:creator><![CDATA[Austin Matzko]]></dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[GPL]]></category>
		<category><![CDATA[Premium Themes]]></category>

		<guid isPermaLink="false">http://pressedwords.com/?p=136</guid>
		<description><![CDATA[Recently there&#8217;s been a kerfuffle in the WordPress blogosphere over the fact that WordPress.org suddenly removed 200 themes from the Extend repository, in order to make all themes comply with this apparently new stipulation: Themes for sites that support &#8220;premium&#8221; (non-GPL or compatible) themes will not be approved. Alister Cameron has written a post that&#8217;s [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Recently there&#8217;s been a kerfuffle in the WordPress blogosphere <a href="http://spectacu.la/wordpressorg-pull-200-gpl-themes/">over</a> <a href="http://justintadlock.com/archives/2008/12/11/automattic-putting-the-boot-to-premium-theme-developers">the</a> <a href="http://www.jeffro2pt0.com/why-were-200-wordpress-themes-removed">fact</a> that WordPress.org suddenly removed 200 themes from the Extend repository, in order to make all themes comply with <a href="http://wordpress.org/extend/themes/about/">this apparently new stipulation</a>:</p>
<blockquote><p>Themes for sites that support &#8220;premium&#8221; (non-GPL or compatible) themes will not be approved. </p></blockquote>
<p>Alister Cameron has written <a href="http://www.alistercameron.com/2008/12/14/matt-mullenweg-wordpress-gpl/">a post that&#8217;s excellent in describing the issue</a> (Matt Mullenweg, head of WordPress.org and the one who removed the themes, <a href="http://www.alistercameron.com/2008/12/14/matt-mullenweg-wordpress-gpl/#comment-19881">seems to like Cameron&#8217;s post too</a>). Here Cameron gets to the heart of the matter:</p>
<blockquote><p>If your theme was pulled and yet it was GPL licensed, there are only two options. Either it was a mistake (email Matt), or you were linking from it to a site that sold other themes that do contravene the GPL. If the latter is the case then you are in the awkward place of making the argument that Matt was wrong to defend the spirit of the GPL, beyond just the letter of it. </p></blockquote>
<p>Perhaps unintentionally Cameron highlights the problem with WordPress.org&#8217;s actions: the <a href="http://www.gnu.org/licenses/gpl-2.0.html">GPL</a> does not really have a spirit.  The GPL is a license&#8212;a license that makes possible wonderful things, but still just a legal document.  When you start trying to defend spirits, you stray from interpretation of a legal document into divination.</p>
<p>What that really means is making judgment calls based on vague or ineffable criteria.  WordPress.org can do that because it pays the bills.  Legally and perhaps ethically it&#8217;s justified in excluding themes that overuse the color blue, if the corporation wants.  But in practice, excluding good GPL&#8217;d themes because their authors have sites that &#8220;support&#8221; non-GPL&#8217;d stuff will foster ill-will.  It will seem just as arbitrary as excluding a too-blue theme because the criteria are just as vague, and that arbitrariness will always seem like capriciousness to those on the receiving end of the stick.</p>
<p>In other words, it&#8217;s unclear what constitutes &#8220;support.&#8221;  According to comments on the posts to which I linked above, &#8220;support&#8221; meant just an ad for a premium theme developer.  What about blog posts that promote or otherwise offer aid to premium theme developers&#8212;does that taint a site with &#8220;support&#8221;?  No one should have to parse answers to questions like that.</p>
<p>We don&#8217;t need more vagueness.  One of the main reasons we have more or less precise legal documents and legal systems for their interpretation is that we want to establish confidence in the stability of the system.  We won&#8217;t invest serious time, money, or other resources when we don&#8217;t have confidence about whether our work will be contravened by a subjective judgment call.  Subjective judgment calls are fine for our own lives or the businesses that are under our purview.  But when it comes to a community, when it means possibly hurting others, there should be greater transparency and specificity regarding the criteria.</p>
<p>So WordPress.org should remove that clause forbidding sites that &#8220;support&#8221; non-GPL&#8217;d stuff, not because as an independent, non-profit organization it doesn&#8217;t have the right to do so (it does).  WordPress.org should remove that clause because it harms the WordPress community by introducing unnecessary arbitrariness. </p>
<p>Besides, good GPL&#8217;d themes&#8212;no matter who creates theme&#8212;are a benefit to the community.  We the community get a free theme, and since we&#8217;re adults we&#8217;re capable of deciding whether the theme author&#8217;s site is one that we think worthy of our attention.</p>
<p>There is a good amount of talent in the WordPress themes business.  If the Extend repository becomes hostile to theme authors of quality themes, then the talent will go somewhere else.  That hurts non-technical WordPress users, who benefit from a central repository that they know is free from spammy links and back-door code, and home to top-notch themes. </p>
]]></content:encoded>
			<wfw:commentRss>http://pressedwords.com/wordpress-themes-and-vagueness/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Monthly Archives Idea</title>
		<link>http://pressedwords.com/tabular-wordpress-archives/</link>
		<comments>http://pressedwords.com/tabular-wordpress-archives/#comments</comments>
		<pubDate>Sat, 15 Nov 2008 00:05:22 +0000</pubDate>
		<dc:creator><![CDATA[Austin Matzko]]></dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[archives]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://pressedwords.com/?p=124</guid>
		<description><![CDATA[Charles Stricklin, WordPress Podcast guru, had an interesting idea for arranging monthly WordPress archives, which is basically to make an archives page like this.]]></description>
				<content:encoded><![CDATA[<p>Charles Stricklin, WordPress Podcast guru, <a href="http://charlesstricklin.com/2008/11/12/crafting-a-different-archives-template/">had an interesting idea for arranging monthly WordPress archives</a>, which is basically to make an archives page like this:</p>
<table>
<tbody>
<tr>
<th>2005</th>
<td><a href=""/></td>
<td><a href="http://www.example.com/2005/02/">Feb</a></td>
<td><a href=""/></td>
<td><a href="http://www.example.com/2005/04/">Apr</a></td>
<td><a href=""/></td>
<td><a href="http://www.example.com/2005/06/">Jun</a></td>
<td><a href="http://www.example.com/2005/07/">Jul</a></td>
<td><a href="http://www.example.com/2005/08/">Aug</a></td>
<td><a href="http://www.example.com/2005/09/">Sep</a></td>
<td><a href="http://www.example.com/2005/10/">Oct</a></td>
<td><a href="http://www.example.com/2005/11/">Nov</a></td>
<td><a href="http://www.example.com/2005/12/">Dec</a></td>
</tr>
<tr>
<th>2006</th>
<td><a href="http://www.example.com/2006/01/">Jan</a></td>
<td><a href="http://www.example.com/2006/02/">Feb</a></td>
<td><a href="http://www.example.com/2006/03/">Mar</a></td>
<td><a href="http://www.example.com/2006/04/">Apr</a></td>
<td><a href="http://www.example.com/2006/05/">May</a></td>
<td><a href="http://www.example.com/2006/06/">Jun</a></td>
<td><a href="http://www.example.com/2006/07/">Jul</a></td>
<td><a href="http://www.example.com/2006/08/">Aug</a></td>
<td><a href="http://www.example.com/2006/09/">Sep</a></td>
<td><a href="http://www.example.com/2006/10/">Oct</a></td>
<td><a href="http://www.example.com/2006/11/">Nov</a></td>
<td><a href=""/></td>
</tr>
<tr>
<th>2007</th>
<td><a href="http://www.example.com/2007/01/">Jan</a></td>
<td><a href=""/></td>
<td><a href=""/></td>
<td><a href=""/></td>
<td><a href=""/></td>
<td><a href=""/></td>
<td><a href=""/></td>
<td><a href=""/></td>
<td><a href=""/></td>
<td><a href=""/></td>
<td><a href=""/></td>
<td><a href=""/></td>
</tr>
<tr>
<th>2008</th>
<td><a href="http://www.example.com/2008/01/">Jan</a></td>
<td><a href=""/></td>
<td><a href=""/></td>
<td><a href="http://www.example.com/2008/04/">Apr</a></td>
<td><a href=""/></td>
<td><a href="http://www.example.com/2008/06/">Jun</a></td>
<td><a href=""/></td>
<td><a href=""/></td>
<td><a href=""/></td>
<td><a href="http://www.example.com/2008/10/">Oct</a></td>
<td><a href=""/></td>
<td><a href=""/></td>
</tr>
</tbody>
</table>
<p>Here&#8217;s how to do it just using the WordPress API (instead of direct database queries):</p>
<pre>
&lt;?php
if ( ! $calendar = wp_cache_get(&#39;year_month_archive&#39;, &#39;archive&#39;) ) {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$calendar = array();
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$year = date(&#39;Y&#39;);
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$mo_qry = new WP_Query();
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$yr_qry = new WP_Query();
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;do {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$yr_qry-&gt;query(array(&#39;year&#39; =&gt; $year, &#39;showposts&#39; =&gt; 1));
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if ( $yr_qry-&gt;have_posts() ) {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for ( $m = 1; $m &lt;= 12; $m++ ) {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$mo_qry-&gt;query(array(&#39;year&#39; =&gt; $year, &#39;monthnum&#39; =&gt; $m, &#39;showposts&#39; =&gt; 1));
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if ( $mo_qry-&gt;have_posts() ) {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$calendar[$year][$m] = array(date(&#39;M&#39;, mktime(1,1,1, $m, 1, $year)), get_month_link($year, $m));
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} else {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$calendar[$year][$m] = array(&#39;&#39;,&#39;&#39;);
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$year = intval($year - 1);
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} while ( $yr_qry-&gt;have_posts() );
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ksort($calendar);
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;wp_cache_set(&#39;year_month_archive&#39;, $calendar, &#39;archive&#39;);
}
?&gt;
&lt;table&gt;
&lt;?php foreach( $calendar as $year =&gt; $m ) : ?&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;&lt;th&gt;&lt;?php echo $year; ?&gt;&lt;/th&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;?php foreach( $m as $data ) : ?&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;&lt;a href="&lt;?php echo $data[1]; ?&gt;"&gt;&lt;?php echo $data[0]; ?&gt;&lt;/a&gt;&lt;/td&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;?php endforeach; ?&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;
&lt;?php endforeach; ?&gt;
&lt;/table&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://pressedwords.com/tabular-wordpress-archives/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress 2.7 Theme Comments How-To</title>
		<link>http://pressedwords.com/wordpress-threaded-comments-how-to/</link>
		<comments>http://pressedwords.com/wordpress-threaded-comments-how-to/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 18:03:30 +0000</pubDate>
		<dc:creator><![CDATA[Austin Matzko]]></dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[WordPress 2.7]]></category>

		<guid isPermaLink="false">http://pressedwords.com/?p=111</guid>
		<description><![CDATA[Otto has a good tutorial on adjusting a WordPress theme to take advantage of the upcoming comment features in WordPress 2.7, including comment threading and paging. Keep in mind that WordPress 2.7 is still under development, and these features could change somewhat before 2.7 is released.]]></description>
				<content:encoded><![CDATA[<p>Otto has <a href="http://ottodestruct.com/blog/2008/09/29/wordpress-27-comments-enhancements/">a good tutorial on adjusting a WordPress theme to take advantage of the upcoming comment features in WordPress 2.7</a>, including comment threading and paging.</p>
<p>Keep in mind that WordPress 2.7 is still under development, and these features could change somewhat before 2.7 is released.</p>
]]></content:encoded>
			<wfw:commentRss>http://pressedwords.com/wordpress-threaded-comments-how-to/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Does Google Discourage the use of WordPress Permalinks?</title>
		<link>http://pressedwords.com/google-not-attacking-wordpress-permalinks-per-se/</link>
		<comments>http://pressedwords.com/google-not-attacking-wordpress-permalinks-per-se/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 15:06:09 +0000</pubDate>
		<dc:creator><![CDATA[Austin Matzko]]></dc:creator>
				<category><![CDATA[Industry]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[permalinks]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://pressedwords.com/?p=101</guid>
		<description><![CDATA[A recent blog entry by Google&#8217;s Search Quality Team members Juliane Stiller and Kaspar Szymanski somewhat confusingly gives the impression that Google does not like WordPress-style permalinks. Does that mean I should avoid rewriting dynamic URLs at all? That&#8217;s our recommendation, unless your rewrites are limited to removing unnecessary parameters, or you are very diligent [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>A <a href="http://googlewebmastercentral.blogspot.com/2008/09/dynamic-urls-vs-static-urls.html">recent blog entry by Google&#8217;s Search Quality Team members Juliane Stiller and Kaspar Szymanski</a> somewhat confusingly gives the impression that Google does not like WordPress-style permalinks.  </p>
<blockquote><p><strong>Does that mean I should avoid rewriting dynamic URLs at all?</strong><br />
That&#8217;s our recommendation, unless your rewrites are limited to removing unnecessary parameters, or you are very diligent in removing all parameters that could cause problems. If you transform your dynamic URL to make it look static you should be aware that we might not be able to interpret the information correctly in all cases.</p></blockquote>
<p>A number of bloggers, including <a href="http://wordpressphilippines.org/blog/google-says-dont-use-pretty-permalinks/">Sophia Lucero at WordPress Philippines</a>, draw the conclusion that WordPress permalinks are harmful to PageRank.  However, the specific concerns mentioned by Stiller and Szymanski suggest they are not actually criticizing the standard use of WordPress permalinks.</p>
<p>Instead, the authors&#8217; overriding concern seems to be static URLs that &#8220;could cause [Google] to crawl the same piece of content needlessly via many different URLs,&#8221; and the examples they give are mainly of search queries.  </p>
<p>That&#8217;s not at all like a WordPress permalink for a blog post. A WordPress post has a one-to-one relationship with its permalink, meaning that only that content will be found at that permalink and that post will not appear at any other permalink.  Or at least that&#8217;s the way things should be on a WordPress blog: for a while <abbr title="search engine optimization">SEO</abbr> experts have recommended that the <em>complete</em> content for each blog post appear only at an individual post&#8217;s permalink.  In practice that means making sure that category archives, monthly archives, and the like should show only <em>excerpts</em> of a post, not the complete text.  Most modern WordPress themes do this, but some, especially older themes, do not.</p>
<p>The Google article gives a number of bad examples of &#8220;dynamic&#8221; URLs written as &#8220;static&#8221; URLs, including this one:<br />
<code>www.example.com/article/bin/answer.foo/en/3/98971298178906/URL</code><br />
The problem with this, say the authors, is that when crawling that link it is &#8220;difficult for us to understand that URL and 98971298178906 have nothing to do with the actual content which is returned via this URL.&#8221; (Here &#8220;98971298178906&#8221; is a session id).  The authors don&#8217;t even recommend simplifying the URL to something like <code>www.example.com/article/bin/answer.foo/en/3</code>:</p>
<blockquote><p>Although we are able to process this URL correctly, we would still discourage you from using this rewrite as it is hard to maintain and needs to be updated as soon as a new parameter is added to the original dynamic URL</p></blockquote>
<p>Again, the concern seems to be that the bad &#8220;permalink&#8221; example does not have a one-to-one relationship with the content.  &#8220;98971298178906&#8221; is particular to the site visitor, not the site&#8217;s content, and even &#8220;answer.foo/en/3&#8243; could change when that answer is no longer the third one.</p>
<p>So the main lesson a WordPress blogger should take from this is the old lesson of SEO: avoid duplicate content.  WordPress permalinks that are one-to-one with their content and have relevant keywords are good for SEO.  They combine the benefits of static URLs mentioned by the authors, such as higher click-through rate, without the deficits. </p>
]]></content:encoded>
			<wfw:commentRss>http://pressedwords.com/google-not-attacking-wordpress-permalinks-per-se/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Previews of the Default BuddyPress Theme</title>
		<link>http://pressedwords.com/buddypress-default-theme-preview/</link>
		<comments>http://pressedwords.com/buddypress-default-theme-preview/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 16:54:36 +0000</pubDate>
		<dc:creator><![CDATA[Austin Matzko]]></dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[BuddyPress]]></category>

		<guid isPermaLink="false">http://pressedwords.com/?p=97</guid>
		<description><![CDATA[Andy Peatling, who works on BuddyPress for Automattic, has posted screenshots of the new default theme that will part of BuddyPress. In case you didn&#8217;t know, BuddyPress is a &#8220;WordPress MU Based Social Network Platform,&#8221; which in other words means that it&#8217;s similar to Facebook, except open source.]]></description>
				<content:encoded><![CDATA[<p>Andy Peatling, who works on <a href="http://buddypress.org/">BuddyPress</a> for Automattic, has <a href="http://apeatling.wordpress.com/2008/06/12/new-buddypress-theme/">posted screenshots of the new default theme that will part of BuddyPress</a>.  In case you didn&#8217;t know, BuddyPress is a &#8220;WordPress MU Based Social Network Platform,&#8221; which in other words means that it&#8217;s similar to Facebook, except open source. </p>
]]></content:encoded>
			<wfw:commentRss>http://pressedwords.com/buddypress-default-theme-preview/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using image.php in WordPress 2.5 Themes</title>
		<link>http://pressedwords.com/gallery-template-in-wordpress-themes/</link>
		<comments>http://pressedwords.com/gallery-template-in-wordpress-themes/#comments</comments>
		<pubDate>Thu, 05 Jun 2008 09:18:59 +0000</pubDate>
		<dc:creator><![CDATA[Austin Matzko]]></dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[image.php]]></category>

		<guid isPermaLink="false">http://pressedwords.com/?p=86</guid>
		<description><![CDATA[Blog almighty points out that WordPress themes should use the images.php template file to take advantage of the image gallery features introduced in WordPress 2.5. There are two main differences in the image.php template file from single.php: printing the image instead of the post content, and using previous_image_link and next_image_link instead of previous_post_link and next_post_link.]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.blog-almighty.com/2008/06/05/thou-shall-make-your-wordpress-theme-a-wordpress-25-compliant/">Blog almighty points out that WordPress themes should use the <code>images.php</code> template</a> file to take advantage of the image gallery features introduced in WordPress 2.5.  There are two main differences in the <code>image.php</code> template file from <code>single.php</code>: printing the image instead of the post content, and using <code>previous_image_link</code> and <code>next_image_link</code> instead of <code>previous_post_link</code> and <code>next_post_link</code>.</p>
]]></content:encoded>
			<wfw:commentRss>http://pressedwords.com/gallery-template-in-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 4/8 queries in 0.003 seconds using memcached
Object Caching 458/469 objects using memcached

 Served from: pressedwords.com @ 2026-04-11 09:50:48 by W3 Total Cache -->