dein wunsch ist mir befehl (ich bin dir echt unglaublich dankbar!)
PHP
<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="post_title">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="meta_inf">
<div class="meta_date">
<?php the_time('F jS, Y') ?>
</div>
<div class="meta_comments">
<?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?>
</div>
</div>
</div>
<div class="post-entry">
<?php the_excerpt() ?>
</div><div class="post-bottom">
<div class="post_ctg">
Categorized Under: <?php the_category(', ') ?>
</div></div>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="navigation-p"><?php next_posts_link('« Previous Entries') ?></div>
<div class="navigation-n"><?php previous_posts_link('Next Entries »') ?></div>
<div class="clear"></div>
</div>
<?php else : ?>
<div class="post">
<div class="post-top">
<h2>Not Found</h2>
</div>
<div class="post-entry">
<p>Sorry, but you are looking for something that isn't here.</p>
</div>
<div class="post-bottom">
</div></div>
<?php endif; ?>
</div>
<?php include (TEMPLATEPATH . '/rightads.php'); ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Alles anzeigen