danke, aber das hilft nichts (dass stand so auch noch da).
hier meine index.php, falls es an der datei liegen sollte (aber weiß ich eben nciht)
ZitatAlles anzeigen<?php get_header(); ?>
<div id="content" class="narrowcolumn">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
[COLOR=Red] <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('dauerhaften Link zu'); ?> <?php the_title(); ?>"><?php the_title(); ?></a></h2>[/COLOR]<small><?php the_time('j. F Y') ?> <!-- by <?php the_author() ?> --></small>
<div class="entry">
<?php the_content('weiter...'); ?>
</div>
<p class="postmetadata">Kategorie <?php the_category(', ') ?> <strong>|</strong> <?php comments_popup_link('0 Kommentare »', '1 Kommentar »', '% Kommentare »'); ?> <?php edit_post_link('Bearbeiten','<strong>|</strong>',''); ?> </p>
</div>
<?php endwhile; ?><div class="navigation">
<div class="alignleft"><?php next_posts_link('« Vorherige Einträge') ?></div>
<div class="alignright"><?php previous_posts_link('Nächste Einträge »') ?></div>
</div>
<?php else : ?><h2 class="center">Nicht gefunden</h2>
<p class="center">Sorry, aber Du suchst gerade nach etwas, was hier nicht ist.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?><?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>