The only reason I would disagree in part is that for Matt&#39;s personal site, the Theme is for his personal use, whereas for Repository-hosted Themes, the Theme is for general, public use.<div><br></div><div>Unless and until a &quot;convention&quot; develops around Post Formats, I would argue that the Post permalink should be retained, regardless of Post Format type.</div>
<div><br></div><div>Chip<br><br><div class="gmail_quote">On Wed, Apr 20, 2011 at 4:19 PM, Otto <span dir="ltr">&lt;<a href="mailto:otto@ottodestruct.com">otto@ottodestruct.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
For specific cases, I&#39;d say this is acceptable. For example, if<br>
they&#39;re using post formats (such as the &quot;Link&quot; format) to hide the<br>
title, then there&#39;s no reason to have a way to get to the single post<br>
page. I&#39;ve implemented similar cases using post formats.<br>
<br>
My preferred implementation is the one I used for matt&#39;s site. I made<br>
it add a &amp;infin; symbol at the end of asides, for example, which links<br>
to the single post page. For Link formats, I intentionally left that<br>
out, since I thought links weren&#39;t worth it. Although the comment<br>
bubble shows up, I guess. Either way, it&#39;s an acceptable design<br>
choice, depending on the specific circumstances.<br>
<br>
You may say that they should have an explanation in a readme.txt, but<br>
I wouldn&#39;t reject a theme solely on that basis, as long as it&#39;s<br>
clearly not the default case.<br>
<br>
JM2C.<br>
<br>
Code to do the infin trick (adjust as desired):<br>
<br>
add_filter(&#39;the_content&#39;,&#39; mytheme_format_content&#39;,1);<br>
function mytheme_format_content($content) {<br>
        global $post;<br>
        if ( (is_home() || is_archive() ) &amp;&amp; ( has_post_format( &#39;aside&#39; ) ) )<br>
{ // add other formats as needed<br>
                $content .= &#39;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&quot;&#39;.get_permalink().&#39;&quot;&gt;&amp;infin;&lt;/a&gt;&#39;;<br>
        }<br>
        return $content;<br>
}<br>
<font color="#888888"><br>
<br>
-Otto<br>
</font><div><div></div><div class="h5"><br>
<br>
<br>
On Wed, Apr 20, 2011 at 3:58 PM, Chip Bennett &lt;<a href="mailto:chip@chipbennett.net">chip@chipbennett.net</a>&gt; wrote:<br>
&gt; Because the user needs to have *some* way of reaching the single-post view.<br>
&gt; Chip<br>
&gt;<br>
&gt; On Wed, Apr 20, 2011 at 3:55 PM, Philip Walton &lt;<a href="mailto:philip@philipwalton.com">philip@philipwalton.com</a>&gt;<br>
&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; A user, in response to a rejected them, posed this question re: smgrundy&#39;s<br>
&gt;&gt; review:<br>
&gt;&gt;<br>
&gt;&gt; Cannot access single-page views of posts without titles from the index.<br>
&gt;&gt; -&gt; That&#39;s good, consistent and how I want it throughout the site. Is this<br>
&gt;&gt; mandatory?<br>
&gt;&gt;<br>
&gt;&gt; I&#39;ve wondered the same things as well. It&#39;s always seemed a little odd to<br>
&gt;&gt; me to have the post date link to the post itself. Personally I think the<br>
&gt;&gt; date should link to a date page. I know there are other ways to create a<br>
&gt;&gt; title-less permalink, but this is the most common.<br>
&gt;&gt;<br>
&gt;&gt; Still, what is the rationale behind requiring posts with no titles to have<br>
&gt;&gt; a permalink to them?<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; theme-reviewers mailing list<br>
&gt;&gt; <a href="mailto:theme-reviewers@lists.wordpress.org">theme-reviewers@lists.wordpress.org</a><br>
&gt;&gt; <a href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers" target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; theme-reviewers mailing list<br>
&gt; <a href="mailto:theme-reviewers@lists.wordpress.org">theme-reviewers@lists.wordpress.org</a><br>
&gt; <a href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers" target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
&gt;<br>
&gt;<br>
_______________________________________________<br>
theme-reviewers mailing list<br>
<a href="mailto:theme-reviewers@lists.wordpress.org">theme-reviewers@lists.wordpress.org</a><br>
<a href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers" target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
</div></div></blockquote></div><br></div>