昨日はwpでハマった
なんだろうか。
新着n件表示。みたいな簡単なのしようとおもって
[php]
<pre>
<?php query_posts(‘showposts=5’); ?>
<ul>
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php endwhile;?>
</ul>
</pre>
[/php]
なんてな感じでいったら、Twitterプラグインと衝突した。
まだちゃんと調べてないんだけど、とりあえず新着記事表示系のプラグインで回避。
http://coffee2code.com/wp-plugins/customizable-post-listings/
急きょ探したプラグインだったけど、結構いろいろ出来るらしいですな。