Da bist du in der index.php schon richtig.
Standard ist ja
Füge dem einfach einen Text hinzu:
<?php the_content('Weiterlesen.. oder so'); ?>
also ich benutze die index.php des themes?
in meinem theme sieht das aber merkwürdig aus.
ich habe schon einige versuche gestartet aber bei mir klappt das irgendwie nicht.
so sieht meine index.php aus:
<?php get_header(); ?>
<div id="content"><!-- the content -->
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post"><!-- the post -->
<h1 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h1>
<p class="date"><?php the_time(__('l, j. F Y G:i','avenue')) ?><?php edit_post_link(__(' | Eintrag bearbeiten','avenue'),'',''); ?></p>
<div class="entry"><!-- the entry -->
<?php the_content(__(' [...]','avenue')); ?>
</div><!-- end of the entry -->
<p class="info_main"><?php _e('Thema: ','avenue'); ?><?php the_category(', ') ?> <strong>| </strong>
<?php comments_popup_link(__('Kommentare (0)','avenue'), __('Kommentare (1)','avenue'), __('Kommentare (%)','avenue')); ?></p>
<?php trackback_rdf(); ?>
</div><!-- end of the post -->
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php posts_nav_link('','',__('« vorherige Beiträge','avenue')) ?></div>
<div class="alignright"><?php posts_nav_link('',__('nächste Beiträge »','avenue'),'') ?></div>
</div>
<?php else : ?>
<h2><?php _e('Nichts gefunden','avenue'); ?></h2>
<p class="center"><?php _e('Sorry, Du suchst nach etwas das nicht hier ist.','avenue'); ?></p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?><?php endif; ?>
</div><!-- end of the content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Alles anzeigen