Frankie, ein Fall für Dich! ;-)
Ähm, Pardon... Probier's mal hiermit, da werden die Beiträge auch direkt gestutzt:
PHP
$mycat_content = get_posts('');
$mycat_output = '';
if (is_array($mycat_content)) {
foreach ( $mycat_content as $mycat_post ) { // start output for each post
$mycontent = strip_tags($mycat_post->post_content);
$mywords = explode(' ', $mycontent, 11);
if (count($mywords) > 10) {
array_pop($mywords);
array_push($mywords, '[…]');
$mycontent = implode(' ', $mywords);
}
$mycat_output .= '<li class="latest"><p><a href="' . get_permalink($mycat_post->ID) .'" title="'.$mycat_post->post_title.'">' . $mycat_post->post_title. '</a>: '.$mycontent.'</p></li>'; // end output for each post
}
}
echo '<ul>'.$mycat_output.'</ul>';
Alles anzeigen
Ansonsten sollte auch die forumsinterne Suche nach "neuste Beiträge" ähnliches zutage fördern.