lilyfanさま
いつもお返事ありがとうございます。
HTML-lint で怒られた箇所がどうなっているかは知りませんが、使用しているテーマに URI を直接記入しているなら、そこを直してみてください。
こちらに関してですが
Another HTML-lintではサイドバーの
# <div id="recent-comments" class="widget_recent_comments widget"> <h3 class="widget-header">最近のコメント</h3> <ul id="recentcomments"><li class="recentcomments"><a href="http://example.com/blog/?p =7&cpage=1#comment-8">テスト1</a> に 匿名 より<li class="recentcomments"><a href="http://example.com.com/blog/?p =7&cpage=1#comment-7">テスト2</a> に 匿名 より<li class="recentcomments"><a href="http://example.com/blog/?p =1&cpage=1#comment-6">保護中: Hello world!</a> に 匿名より
# </div>
という箇所に対して「&cpage は不明な実体参照です。」と怒られました。
この箇所をくわしく調べてみると
wp-include\widgets.phpのなかにある
<?php echo $before_widget; ?>
<?php echo $before_title . $title . $after_title; ?>
<ul id="recentcomments"><?php
if ( $comments ) : foreach ( (array) $comments as $comment) :
echo '<li class="recentcomments">' . sprintf(__('%1$s on %2$s'), get_comment_author_link(), '<a>comment_ID) . '">' . get_the_title($comment->comment_post_ID) . '</a>') . '';
endforeach; endif;?>
<?php echo $after_widget; ?>
がおそらく対応していると思うのですが
恥ずかしながら、どのようにして「attribute_escape() 関数」を
組み込んだらよいのかがわかりません。
ご教授いただければと思っております。
どうかよろしくお願いいたします。