das is das individuelle template:
HTML
<?php get_header(); ?>
<?php get_sidebar(); ?>
<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="top_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="top_entry">
<?php the_excerpt(); ?>
</div>
<div class="post_bottom">
<div class="post_cat">
Filled Under: <?php the_category(', ') ?>
</div>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="navigation-p"><?php next_posts_link('« Previous Posts') ?></div>
<div class="navigation-n"><?php previous_posts_link('Next Posts »') ?></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 get_footer(); ?>
Alles anzeigen
und brauchst du was spezielles vom stylesheet?
echt super, dass du das machst!