problem to show posts
-
hello, why does this:
[code] <?php
$posts = get_posts('numberposts=5');
foreach ($posts as $post) :
?>
<h4>" rel="bookmark"><?php the_title(); ?></h4>
<div class="post"><?php the_excerpt(); ?></div>
<p class="custom"><?php the_time('d. F Y ') ?> abgelegt in <?php the_category(', ') ?> | <?php edit_post_link('Edit','',''); ?>
<?php
endforeach;
?>[/code]only function with the_excerpt? By trying to display the_content nothing could be seen..
The topic ‘problem to show posts’ is closed to new replies.