I would use:<div><br></div><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><div>if ( ! get_the_title() )</div></blockquote><div><br></div><div>Rather than:</div><div><br>
</div><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><div>$title = the_title( &#39;&#39;, &#39;&#39;, false );<br>if ( empty( $title ) )</div></blockquote><div><br></div>
<div>But, that doesn&#39;t really address your underlying point, which I believe is valid, but outside the scope of the Theme Review guidelines. I think we&#39;ve got a good balance, by requiring a permalink to the Single-Post view, but not dictating *how* that permalink appears. Our concern is the UX; the design consideration can remain a matter between the developer and the end users. I&#39;d prefer we, as Theme reviewers, not get in the middle of that.</div>
<div><br></div><div>Chip<br><br><div class="gmail_quote">On Tue, Mar 8, 2011 at 2:39 PM,  <span dir="ltr">&lt;<a href="mailto:michael@mfields.org">michael@mfields.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Right on, I can totally see that need. The main thing the erks me about<br>
solutions such as this is that they take the authors intentions and throw<br>
them out the window. If I am writing a post and I choose to leave the<br>
title blank, I would expect the title to be blank. I do not want the title<br>
replaced with &quot;no title&quot;. To me it has the effect of a designer leaving in<br>
FPO images in a finished design ... IMO it looks sloppy.<br>
<br>
If a permalink is needed, I would suggest that it be added somewhere else<br>
in the template in a conditional check. the_title can still be used for<br>
this:<br>
<br>
$title = the_title( &#39;&#39;, &#39;&#39;, false );<br>
if ( empty( $title ) ) {<br>
    print &#39;&lt;a href=&quot;&#39; . esc_url( get_permalink() ) . &#39;&quot;&gt;Permalink&lt;/a&gt;&#39;;<br>
}<br>
<br>
-Mike<br>
<div><div></div><div class="h5"><br>
<br>
&gt; The issue arises when Post Title is the only available permalink to the<br>
&gt; Single-Post view. In this case, the developer may want to provide text<br>
&gt; such<br>
&gt; as &quot;No Title&quot;, etc., so that the permalink still gets displayed.<br>
&gt;<br>
&gt; Chip<br>
&gt;<br>
&gt; On Tue, Mar 8, 2011 at 2:15 PM, &lt;<a href="mailto:michael@mfields.org">michael@mfields.org</a>&gt; wrote:<br>
&gt;<br>
&gt;&gt; Is there a need for a conditional test?<br>
&gt;&gt;<br>
&gt;&gt; I wrap all my code within the function and the conditional as pect is<br>
&gt;&gt; handled for you:<br>
&gt;&gt;<br>
&gt;&gt; the_title( &#39;&lt;h2&gt;&#39;, &#39;&lt;/h2&gt;&#39; );<br>
&gt;&gt;<br>
&gt;&gt; This way the tags will not be printed if the title is empty.<br>
&gt;&gt;<br>
&gt;&gt; -Mike<br>
&gt;&gt;<br>
&gt;&gt; &gt; Ran across this suggestion on the WPORG support forums:<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; <a href="http://wordpress.org/support/topic/handling-display-of-title-when-none-exists?replies=1" target="_blank">http://wordpress.org/support/topic/handling-display-of-title-when-none-exists?replies=1</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; I like this approach; it is cleaner than performing a conditional test<br>
&gt;&gt; in<br>
&gt;&gt; &gt; the template file.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Just thought I&#39;d pass it along...<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Chip<br>
&gt;&gt; &gt; _______________________________________________<br>
&gt;&gt; &gt; theme-reviewers mailing list<br>
&gt;&gt; &gt; <a href="mailto:theme-reviewers@lists.wordpress.org">theme-reviewers@lists.wordpress.org</a><br>
&gt;&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;&gt; &gt;<br>
&gt;&gt;<br>
&gt;&gt;<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;&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>
<br>
<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>