<font class="Apple-style-span" face="tahoma, sans-serif">I like the filter, good approach, also simple use for this would be:<br></font><div><span class="Apple-style-span" style="font-family: tahoma, sans-serif; "><br></span></div>

<div><span class="Apple-style-span" style="font-family: tahoma, sans-serif; ">&lt;h1 class=&quot;entry-title&quot;&gt;</span></div><div><font size="2"><font face="tahoma,sans-serif"><div>    &lt;?php</div><div>    if ( ! get_the_title() ) {</div>

<div>        print &#39;&lt;a href=&quot;&#39; . esc_url( get_permalink() ) . &#39;&quot;&gt;Untitled&lt;/a&gt;&#39;;</div><div>    ?&gt;</div><div>    &lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__( &#39;Permalink to %s&#39;, &#39;fit&#39; ), the_title_attribute( &#39;echo=0&#39; ) ); ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;</div>

<div>&lt;/h1&gt;</div><div><br></div><div>Michael/Chip combination.</div><div><br></div><div>If there is no title the Untitled will need to be in place where h1 should be instead of having h1 empty in source code and place a link on top somewhere. i.e. &quot;Empty Text Node&quot; is there but not visible to let&#39;s say Search Engines or any site that would crawl this.</div>

<div><br></div><div>Emil</div><div><br></div></font></font><div><strong>Emil Uzelac</strong> | ThemeID | T: 224-444-0006 | Twitter: @EmilUzelac | E: <a href="mailto:emil@themeid.com" target="_blank">emil@themeid.com</a> | <a href="http://themeid.com/" target="_blank">http://themeid.com</a></div>


<div><font color="#999999">Make everything as simple as possible, but not simpler. - Albert Einstein</font></div><br>
<br><br><div class="gmail_quote">On Tue, Mar 8, 2011 at 2:56 PM, Edward Caissie <span dir="ltr">&lt;<a href="mailto:edward.caissie@gmail.com">edward.caissie@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

Perhaps I wasn&#39;t clear with my earlier reply ...<br><br>I agree with Mike on the title should be empty if the author chooses not to write one; although I also would not recommend this particular item fall under the Theme Review guidelines. The end-users will make it clear if they think the Theme author&#39;s design concept fits their needs ... or not.<br>



<br>I&#39;m still not thrilled with the method I am using in my themes but this has given me a few more ideas to play with.<div><div></div><div class="h5"><br><br><div class="gmail_quote">On Tue, Mar 8, 2011 at 3:45 PM, Chip Bennett <span dir="ltr">&lt;<a href="mailto:chip@chipbennett.net" target="_blank">chip@chipbennett.net</a>&gt;</span> wrote:<br>



<blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204, 204, 204);padding-left:1ex">I would use:<div><br></div><blockquote style="margin:0pt 0pt 0pt 40px;border:medium none;padding:0px">



<div>if ( ! get_the_title() )</div></blockquote><div><br></div><div>Rather than:</div><div><div><br>
</div><blockquote style="margin:0pt 0pt 0pt 40px;border:medium none;padding:0px"><div>$title = the_title( &#39;&#39;, &#39;&#39;, false );<br>if ( empty( $title ) )</div></blockquote><div><br></div>
</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><font color="#888888">Chip</font><div><div></div><div><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" target="_blank">michael@mfields.org</a>&gt;</span> wrote:<br>



<blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204, 204, 204);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><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" target="_blank">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" target="_blank">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" target="_blank">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" target="_blank">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" target="_blank">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></div></div>
<br>_______________________________________________<br>
theme-reviewers mailing list<br>
<a href="mailto:theme-reviewers@lists.wordpress.org" target="_blank">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>
<br></blockquote></div><br>
</div></div><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>
<br></blockquote></div><br></div>