PHP
<?php get_header(); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="post">
<div class="title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></div>
<div class="meta">
<span class="posted">Posted on <?php the_time('F j, Y'); ?> in <?php the_category(', '); ?> by <?php the_author() ?>
<?php the_content('<p>Den ganzen Beitrag lesen »</p>'); ?>
</span>
<span class="comments"><?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></span>
<div style="clear: both;"></div>
</div>
[B]<div class="entry">
<?php the_content(); ?>
</div>
[/B]
</div>
<?php endwhile; else: ?>
<div class="post">
<div class="title">Not Found</div>
<div class="entry">
You are looking for something that isn't here
</div>
</div>
<?php endif; ?>
<?php posts_nav_link(); ?>
<?php get_footer(); ?>
Alles anzeigen
Der fett markierte Teil ist zuviel.