meine englische version vom default hat das hier in der comments.php:
<?php if ( have_comments() ) : ?>
<h3 id="comments"><?php comments_number('No Responses', 'One Response', '% Responses' );?> to “<?php the_title(); ?>”</h3>
<div class="navigation">
<div class="alignleft"><?php previous_comments_link() ?></div>
<div class="alignright"><?php next_comments_link() ?></div>
</div>
<ol class="commentlist">
<?php wp_list_comments(); ?>
</ol>
<div class="navigation">
<div class="alignleft"><?php previous_comments_link() ?></div>
<div class="alignright"><?php next_comments_link() ?></div>
</div>
<?php else : // this is displayed if there are no comments so far ?>
Alles anzeigen
und diese 'leeren' navigation erzeugen den grossen abstand.
nur zur info:
die default_DE die ich vor einem etwa einem jahr mit dem deutschen wordpress 2.7.1 paket heruntergeladen habe, hat das nicht -
die hat dafuer eine ganz andere art, die kommentare darzustellen:
<ol class="commentlist">
<?php foreach ($comments as $comment) : ?>
<li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>">
<?php echo get_avatar( $comment, 32 ); ?>
<cite><?php comment_author_link() ?></cite> sagt:
<?php if ($comment->comment_approved == '0') : ?>
<em>Dein Kommentar wird noch moderiert.</em>
<?php endif; ?>
<br />
<small class="commentmetadata"><a href="#comment-<?php comment_ID() ?>" title=""><?php comment_date('d. F Y') ?> um <?php comment_time() ?></a> <?php edit_comment_link('bearbeiten',' ',''); ?></small>
<?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