Ich würde gerne die Nummerierung vor den Kommentaren (die zur Zeit hier noch zu sehen ist) entfernen.
Der entsprechende Teil der comments.php sieht derzeit so aus:
PHP
<ol class="commentlist">
<?php foreach ($comments as $comment) : ?>
<li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>"> <small class="commentmetadata">
<?php comment_author_link() ?>
<?php __('on','branfordmagazine');?>
<a href="#comment-<?php comment_ID() ?>" title="">
<?php comment_date(__ ('d.m.Y', 'branfordmagazine')); ?>
<?php __('at','branfordmagazine');?>
<?php comment_time() ?>
</a>
<?php edit_comment_link('edit',' ',''); ?>
:</small>
<?php if ($comment->comment_approved == '0') : ?>
<em>
<?php _e('Ihr Kommentar wird durch einen Moderator freigeschaltet','branfordmagazine'); ?>
</em>
<?php endif; ?>
<?php comment_text(); ?>
</li>
<?php
/* Changes every other comment to a different class */
$oddcomment = ( empty( $oddcomment ) ) ? 'class="alt" ' : '';
?>
<?php endforeach; /* end for each comment */ ?>
</ol>
Alles anzeigen
Ich nutze das Branford Magazin 2.0-Theme und Wordpress 2.6.3.