Hallo,
ich habe auf meiner Frontpage eine Anzeige für die letzten 3 Artikel.
Das ganze hab ich folgendermaßen gelöst:
PHP
<h2>Die letzten Blogeinträge</h2>
<ul id="last_entry"><?php query_posts('showposts=3'); ?><?php while (have_posts()) : the_post(); ?>
<li>
<h3 class="last_entry"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title() ?>"><?php echo the_title('', '', false) ?></a></h3>
<span class="last_entry_span"><?php the_time('j. F Y') ?> | <a href="<?php the_permalink() ?>#comments"><?php comments_number('Keine Kommentare','ein Kommentar','% Kommentare');?>
</a></span>
<?php the_content('Den ganzen Beitrag lesen!'); ?>
</li><?php endwhile; ?>
Problem hierbei ist die vorletzte Zeile.
Es wird nicht nur der Beitrag bis zum <---more---> - Tag angezeigt, sondern der ganze Beitrag.
Was hab ich da verkehrt gemacht,
oder wie kann ich das Problem beheben?
Freue mich über Antworten!
Lg Dereine