| 1 |
<?php |
| 2 |
/* |
| 3 |
+----------------------------------------------------------------+ |
| 4 |
| | |
| 5 |
| WordPress 2.0 Plugin: WP-Print 2.06 | |
| 6 |
| Copyright (c) 2005 Lester "GaMerZ" Chan | |
| 7 |
| | |
| 8 |
| File Written By: | |
| 9 |
| - Lester "GaMerZ" Chan | |
| 10 |
| - http://www.lesterchan.net | |
| 11 |
| | |
| 12 |
| File Information: | |
| 13 |
| - Printer Friendly Page For Comments | |
| 14 |
| - wp-print-comments.php | |
| 15 |
| | |
| 16 |
+----------------------------------------------------------------+ |
| 17 |
*/ |
| 18 |
?> |
| 19 |
<?php if($comments) : ?> |
| 20 |
<?php $comment_count = 1; ?> |
| 21 |
<p id="CommentTitle"><?php print_comments_number(); ?> To "<?php the_title(); ?>"</p> |
| 22 |
<?php foreach ($comments as $comment) : ?> |
| 23 |
<p class="CommentDate"><b>#<?php echo $comment_count; ?> <?php comment_type(); ?></b> By <u><?php comment_author(); ?></u> On <?php comment_date(get_settings("date_format").' @ '.get_settings("time_format")); ?></p> |
| 24 |
<div class="CommentContent"><?php print_comments_content(); ?></div> |
| 25 |
<?php $comment_count++; ?> |
| 26 |
<?php endforeach; ?> |
| 27 |
<hr class="Divider" align="center" /> |
| 28 |
<?php endif; ?> |