Ich nutze das gleiche Plugin wie du und habe keine Probleme.
Hier das Template meiner Gästebuchseite:
PHP
<?php
/*
Template Name: Gaestebuch
*/
?>
<?php
get_header();
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post">
<h3 class="titlu" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>">
<?php the_title(); ?>
</a></h3>
<div class="feedback">
<!-- <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permanent link to'); ?> <?php the_title(); ?>" class="link-permanent"><?php _e('Permalink'); ?></a>-->
<?php comments_popup_link(__('Kein Kommentar'), __('1 Kommentar'), __('2 Kommentare'), 'link-comentariu', __('Kommentieren nicht erlaubt')); ?>
</div>
</div>
<?php if(function_exists('ro_comments_template')) ro_comments_template(); else comments_template(); ?>
<?php endwhile; else: ?>
<?php endif; ?>
<?php posts_nav_link(' — ', __('« Previous Page'), __('Next Page »')); ?>
<?php get_footer(); ?>
Alles anzeigen