教文館の社内ナレッジベースです。

いちいち最近の記事を確認するのが面倒なので、サイドバーに記事2つ前まで表示させます。

コードは下の通り。面倒なので疑似要素「before」は指定しません。→ノートアイコンなし。

<ul>
<?php
query_posts( array(
showposts => '2',
post_type=>'kanri',
));
if (have_posts()) : while (have_posts()) : the_post();
?>
<li><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>">
<?php the_title(); ?></a></li>
<?php endwhile; endif; ?>
</ul>