Wordpressの最近の投稿にはてブ数を表示 for WP2.8
はてブされる事自体ほとんどないのですが・・・。とりあえずメモ。
WordPress の サイドバーの最近の投稿(Recent Entry)にはてブ数を表示する | Sun Limited Mt.
上記のサイトを参考にさせて頂きました。
Wordpress2.8以降の場合はwp-includes/default-widgets.phpを編集します。
2.7以前の方は従来通りwp-includes/widgets.phpを編集してください。
wp-includes/default-widgets.phpの552行目。
Before
<li><a href="<?php the_permalink() ?>"><?php if ( get_the_title() ) the_title(); else the_ID(); ?> </a></li>
After
<li><a href="<?php the_permalink() ?>"><?php if ( get_the_title() ) the_title(); else the_ID(); ?> </a> <a onclick="javascript:pageTracker._trackPageview('/outgoing/b.hatena.ne.jp/entry/<?php the_permalink(); ?>');" href="http://b.hatena.ne.jp/entry/<?php the_permalink(); ?>"><img src="http://b.hatena.ne.jp/entry/image/<?php the_permalink(); ?>" alt="" /></a></li>



