Hallo... habe folgendes in meiner page.php stehen:
PHP
<?php get_header(); ?>
<div id="content_box">
<?php include (TEMPLATEPATH . '/l_sidebar.php'); ?>
<div id="content" class="posts">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="entry">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<h4><?php the_time('j. F Y') ?><!-- by <?php the_author() ?> --> </h4>
<?php the_content('[Mehrlesen →]'); ?>
</div>
<?php endwhile; ?>
<?php include (TEMPLATEPATH . '/navigation.php'); ?>
<?php else : ?>
<h2 class="page_header center">Not Found</h2>
<div class="entry">
<p class="center">Endschuldige, aber das, was du gesucht hast, befindet sich nicht hier.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
</div>
<?php endif; ?>
</div>
<?php include (TEMPLATEPATH . '/r_sidebar.php'); ?>
</div>
<?php get_footer(); ?>
Alles anzeigen
Wenn ich nun im Editor einen Text schreibe und den "more-Button" drücke steht im Editor auch dieses more-Ding... aber im Frontend wird nichts abgeschnitten. muß ich noch was anderes einstellen?
Das Komische... der "Next-Page-Button" funzt.
Danke für Tipps
Fisch