add post title in the anchor title attribute
authorLucian Mogoșanu <lucian.mogosanu@gmail.com>
Sun, 4 Mar 2012 00:01:20 +0000 (02:01 +0200)
committerLucian Mogoșanu <lucian.mogosanu@gmail.com>
Sun, 4 Mar 2012 00:01:20 +0000 (02:01 +0200)
recent-draw.php

index 9c5f016..d7552ec 100644 (file)
@@ -8,7 +8,8 @@ function drawrecent()
    <ul id="recentComments">
        <?php foreach ($comments as $comment) : ?>
        <li id="shortComment" >
-       <a href="<?php echo get_comment_link($comment->comment_ID,'');?>"><?php echo $comment->comment_author; ?></a>: 
+       <a href="<?php echo get_comment_link($comment->comment_ID,'');?>"
+          title="<?php echo get_the_title($comment->comment_post_ID); ?>"><?php echo $comment->comment_author; ?></a>: 
                <?php echo wp_html_excerpt($comment->comment_content, 72); ?>...
        </li>
        <?php endforeach;?>