So habe es jetzt folgendermaßen im code stehen...
[INDENT]Datenbank ID...
[/INDENT]
PHP
<?php get_header(); ?>
<div id="container" class="clearfix">
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<!---- Betroffener Bereich ----->
<?php previous_post_link('%link', 'Letzer Part', TRUE, '20'); ?>
<?php next_post_link('%link', 'Nächster Part', TRUE, '20'); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h3 class="posttitle"><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h3>
<div class="postmetadata">Geschrieben am <?php the_time('d.m.Y') ?> von <?php the_author_posts_link(); ?> <?php edit_post_link('| Bearbeiten',' ',''); ?></div>
<div class="entry">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'dm' ), 'after' => '</div>' ) ); ?>
</div> <br />
<?php include (TEMPLATEPATH . '/social.php'); ?>
</div>
<div class="navigation">
<div class="alignnav"><?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?></div>
</div>
<div class="post">
<?php comments_template(); ?>
</div>
<?php endwhile; else: ?>
<p><big><center><b>Sorry, no posts matched your criteria.</b></center></big></p>
<?php endif; ?>
</div>
<div id="sidebar">
<?php include (TEMPLATEPATH . '/sidebar.php'); ?>
</div> </div>
<?php get_footer(); ?>
</body>
</html>
Alles anzeigen