Wordpressの新着記事をサイトトップページなどに表示するおまじない

<?php require_once('wp-load.php'); ?>
<!doctype html>
<html>

をHTMLの上部にいれて、.htmlでなく.phpで保存
文字コードはutf-8
    <ul>
<?php
$myposts = get_posts('numberposts=10&orderby=post_date');
foreach($myposts as $post) :
setup_postdata($post);
?>
<li>
<?php $cat = get_the_category(); $cat = $cat[0]; {
  echo '<p class="cat cat_' . $cat->cat_ID  . '">';
 } ?>
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a></p>
</li>
<?php endforeach; ?>
    </ul>


カテゴリーアイコン(IDをクラスとして使う)付きです。