はてなブックマーク数を表示してみたら実はブックマークされている記事があった。
今まで、はてなブックマーク数を表示していなかったので、まぁどうせ表示しても意味ないだろうなと思いつつ表示してみることにした。
すると、なんとはてブされている記事があってビックリもっこり。
初げっとおめでとう、俺。
ワードプレスでのやり方が公式に載ってなかったので一応追記に書いておきます。
テンプレートのはてブ数を表示させたい部分に、
<a href=”http://b.hatena.ne.jp/entry/<?php the_permalink(); ?>”><img src=”http://b.hatena.ne.jp/entry/image/<?php the_permalink(); ?>”></a>
と書けばおっけー。
ちなみに、おいらは、”/themes/likeie7/index.php”の中に
<a href=”http://b.hatena.ne.jp/append?<?php the_permalink(); ?>”><img src=”/img/hatena.gif” alt=”hatena” /></a> <a href=”http://b.hatena.ne.jp/entry/<?php the_permalink(); ?>”><img src=”http://b.hatena.ne.jp/entry/image/<?php the_permalink(); ?>”></a>
<a href=”http://del.icio.us/post?url=<?php the_permalink() ?>&title=<?= urlencode(mb_convert_encoding(the_title(”",”",false),”UTF-8″)) ?>”><img src=”/img/delicious.gif” alt=”delicious” /></a>
<a href=”http://clip.livedoor.com/clip/add?link=<?php the_permalink() ?>&title=<?= urlencode(mb_convert_encoding(the_title(”",”",false),”UTF-8″)) ?>&jump=ref”><img src=”/img/clip.gif” alt=”livedoor clip” /></a>
<a href=”http://clip.nifty.com/create?url=<?php the_permalink() ?>&title=<?= urlencode(mb_convert_encoding(the_title(”",”",false),”UTF-8″)) ?>”><img src=”/img/nifty.gif” alt=”nifty clip” /></a>
<a href=”http://pookmark.jp/post?url=<?php the_permalink() ?>&title=<?= urlencode(mb_convert_encoding(the_title(”",”",false),”UTF-8″)) ?>”><img src=”/img/pook.bmp” alt=”POOKMARK. Airlines” /></a>
こんな感じでまとめて書いてます。
って見づらいなおい。




