Danke, ich glaube es ist wie du gesagt hast die single.php. Nachdem ich sie gelöscht habe, wurde die Seite richtig angezeigt. Wozu braucht man die single.php, kann ja nicht sein, dass ich sie einfach löschen kann? (Habe auch eine 404.php, aber die war es nicht)
Ich kann php /htm leider nicht so gut und weiß nicht wann man die <divs> schließen muss. Ich habe schon in einigen Seiten gesehen, dass es zwei open tags gibt aber nur einen close tag, für <div>. Woran erkennt man denn, wenn etwas zuviel ist?
Ich stell den den Code hier mal rein, vielleicht fällt jemandem der Fehler auf?.
<?php get_header(); ?>
<div id="content">
<div class="post-nav"> <span class="previous"><?php previous_post_link('%link') ?></span> <span class="next"><?php next_post_link('%link') ?></span></div>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="date"><span><?php the_time('M') ?></span> <?php the_time('d') ?></div>
<div class="title">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="postdata"><SPAN class="category"><?php the_category(', ') ?></SPAN> <span class="right mini-add-comment"><a href="#respond">Add comments</a></span></div>
</div>
<div class="entry">
<?php the_content('Continue reading »'); ?>
<?php include ( TEMPLATEPATH . "/anime_cuts.php"); ?>
<?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
<?php edit_post_link('Edit', '', ''); ?>
</div><!--/entry -->
<?php comments_template(); ?>
<?php endwhile; else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>
</div><!--/post -->
<br/>
</div><!--/content -->
<div align="center" id="footer">Copyright by Tran Manh Hung . Blog by <a href="http://wordpress.com">Wordpress</a> and <a href="http://tranmanhhung.info/Tmhung/theme-design/life-is-a-byte-theme-for-wordpress-edited-from-itheme/">Life is a Byte theme</a> edit from <a href="http://www.ndesign-studio.com/resources/wp-themes/">iTheme</a>
</div>
</div><!--/left-col -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Alles anzeigen