I think the confusion is in terminology. There are both a wp_title filter and a wp_title template tag; the requirement refers to the template tag which, if taken as-is from Twenty Eleven, should be fine.<div><br></div><div>

<br><div class="gmail_quote">On 6 June 2012 16:08, Philip M. Hofer (Frumph) <span dir="ltr">&lt;<a href="mailto:philip@frumph.net" target="_blank">philip@frumph.net</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">


<div dir="ltr">
<div dir="ltr">
<div style="font-size:12pt;font-family:&#39;Calibri&#39;">
<div>This one is new to me, the reference is here:</div>
<div> </div>
<div><a title="http://codex.wordpress.org/Theme_Review#Required_Hooks_and_Navigation" href="http://codex.wordpress.org/Theme_Review#Required_Hooks_and_Navigation" target="_blank">http://codex.wordpress.org/Theme_Review#Required_Hooks_and_Navigation</a></div>


<div> </div>
<div>
<div style="font-size:small;font-style:normal;text-decoration:none;font-family:&#39;Calibri&#39;;display:inline;font-weight:normal">apply_filters(‘wp_title 
is found in wp-includes/general-template.php</div></div>
<div>
<div style="font-size:small;font-style:normal;text-decoration:none;font-family:&#39;Calibri&#39;;display:inline;font-weight:normal"> </div></div>
<div>
<div style="font-size:small;font-style:normal;text-decoration:none;font-family:&#39;Calibri&#39;;display:inline;font-weight:normal">It 
determines what the title is supposed to output, however it doesn’t do 
everything that people want it to, in most cases it doesn’t output the bloginfo 
appropriately on the home page that is specific for the theme.</div></div>
<div>
<div style="font-size:small;font-style:normal;text-decoration:none;font-family:&#39;Calibri&#39;;display:inline;font-weight:normal"> </div></div>
<div>
<div style="font-size:small;font-style:normal;text-decoration:none;font-family:&#39;Calibri&#39;;display:inline;font-weight:normal">It’s 
not that the codex is wrong at being a requirement, it’s more so that the 
current standards do not have enough documentation and core automatic themes are 
not utilizing the filter appropriately.</div></div>
<div>
<div style="font-size:small;font-style:normal;text-decoration:none;font-family:&#39;Calibri&#39;;display:inline;font-weight:normal"> </div></div>
<div>
<div style="font-size:small;font-style:normal;text-decoration:none;font-family:&#39;Calibri&#39;;display:inline;font-weight:normal">Example 
twentyeleven theme:</div></div>
<div>
<div> </div>
<div>&lt;title&gt;&lt;?php</div>
<div>    /*</div>
<div>     * Print the &lt;title&gt; tag based on what is 
being viewed.</div>
<div>     */</div>
<div>    global $page, $paged;</div>
<div> </div>
<div>    wp_title( &#39;|&#39;, true, &#39;right&#39; );</div>
<div> </div>
<div>    // Add the blog name.</div>
<div>    bloginfo( &#39;name&#39; );</div>
<div> </div>
<div>    // Add the blog description for the home/front 
page.</div>
<div>    $site_description = get_bloginfo( &#39;description&#39;, 
&#39;display&#39; );</div>
<div>    if ( $site_description &amp;&amp; ( is_home() || 
is_front_page() ) )</div>
<div>        echo &quot; | 
$site_description&quot;;</div>
<div> </div>
<div>    // Add a page number if necessary:</div>
<div>    if ( $paged &gt;= 2 || $page &gt;= 2 )</div>
<div>        echo &#39; | &#39; . sprintf( __( &#39;Page 
%s&#39;, &#39;twentyeleven&#39; ), max( $paged, $page ) );</div>
<div> </div>
<div>    ?&gt;&lt;/title&gt;</div></div>
<div> </div>
<div>This could actually be written as such:</div>
<div> </div>
<div>add_filter(‘wp_title’, ‘twentyeleven_wp_title’);</div>
<div> </div>
<div>function twentyeleven_wp_title($title) {</div>
<div>global $wp_query, $paged, $page;</div>
<div>    // add the blog name.</div>
<div>    $title .= get_bloginfo(‘name’);</div>
<div>    // Add the blog description for the home/front 
page.</div>
<div>    $site_description = get_bloginfo( &#39;description&#39;, 
&#39;display&#39; );</div>
<div>    if ( $site_description &amp;&amp; ( is_home() || 
is_front_page() ) )</div>
<div>        $title .= &quot; | 
$site_description&quot;;</div>
<div>    // add a page number if necessary</div>
<div>    // Add a page number if necessary:</div>
<div>    if ( $paged &gt;= 2 || $page &gt;= 2 )</div>
<div>        $title .= &#39; | &#39; . _x( &#39;Page %s&#39;, 
&#39;twentyeleven&#39; ), max( $paged, $page ) ;</div>
<div>    return $title;</div>
<div>}</div>
<div> </div>
<div>^  little unsure of the _x( part and I’m doing this from memory.</div>
<div> </div>
<div>But the biggest issue probably is lack of documentation to make that a 
requirement and people in the know not using it.</div>
<div> </div>
<div>However, as you can see.   It *should* be done this way.</div>
<div> </div>
<div>So the end result would be:</div>
<div> </div>
<div>&lt;title&gt;&lt;?php wp_title( ‘|’, true, ‘right’); 
?&gt;&lt;/title&gt;</div>
<div> </div>
<div>
<div style="font-size:small;font-style:normal;text-decoration:none;font-family:&#39;Calibri&#39;;display:inline;font-weight:normal">^^ 
Now, the problem will be the output.    Someone else want to 
chime in on if this is correct?</div></div>
<div>
<div style="font-size:small;font-style:normal;text-decoration:none;font-family:&#39;Calibri&#39;;display:inline;font-weight:normal"> </div></div>
<div>
<div style="font-size:small;font-style:normal;text-decoration:none;font-family:&#39;Calibri&#39;;display:inline;font-weight:normal">- 
Phil</div></div>
<div>
<div style="font-size:small;font-style:normal;text-decoration:none;font-family:&#39;Calibri&#39;;display:inline;font-weight:normal"> </div></div>
<div>
<div style="font-size:small;font-style:normal;text-decoration:none;font-family:&#39;Calibri&#39;;display:inline;font-weight:normal"></div>
<div style="FONT:10pt tahoma">
<div style="BACKGROUND:#f5f5f5">
<div><b>From:</b> <a title="themes@gazpo.com" href="mailto:themes@gazpo.com" target="_blank">Gazpo Themes</a> </div>
<div><b>Sent:</b> Wednesday, June 06, 2012 12:52 PM</div>
<div><b>To:</b> <a title="theme-reviewers@lists.wordpress.org" href="mailto:theme-reviewers@lists.wordpress.org" target="_blank">theme-reviewers@lists.wordpress.org</a> 
</div>
<div><b>Subject:</b> [theme-reviewers] Ticket #8055: Need 
help.</div></div></div>
<div> </div></div>
<div style="font-size:small;font-style:normal;text-decoration:none;font-family:&#39;Calibri&#39;;display:inline;font-weight:normal"><div><div class="h5">Hello,<br>I 
need help about my theme ticket (<a href="http://themes.trac.wordpress.org/ticket/8055" target="_blank">http://themes.trac.wordpress.org/ticket/8055</a>)<br><br>The 
theme reviewer has suggested: &#39;Themes must use wp_title filter.&#39;<br>I have used 
the wp_title from the twenty eleven theme, and I can see that it works fine. Can 
someone tell me what&#39;s wrong with it?<br><br>Also about the header banner, it is 
by default linked to the local site where it will be installed. I really can&#39;t 
see where the problem is. <br><br>Can someone please tell me about above issues, 
I will highly appreciate.<br><br>Thanks.<br>Sami.<br>
</div></div><p>
</p><hr>
_______________________________________________<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>

<p></p></div></div></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>