PHP
<ol>
<?php
$posts = get_posts('numberposts=100&category=23');
foreach($posts as $post) : ?>
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ol>
numberposts zahl richtig stellen category id richtig stellen
Ausgabe in einer geordneten Liste -gegebenenfalls HTML ändern
es wird nur der Link angezeigt-brauchst Du mehr - the_excerpt oder so dazugeben
das sooft kopieren wie Du es brauchst- category id immer ändern
lg