今まで他のブックマークサービスのボタンを付けていたのですが、そろそろ見直しするかということで、はてなブックマーク、twitter、facebookのボタンを設置してみました。
以下、ざっくりとした設置方法です。コードを取得してWordpressのテーマに貼り付けてるだけです。
はてなブックマークのボタン設置
以下サイトで設定
http://b.hatena.ne.jp/guide/bbutton
コード例
個別記事に設置するので <?php the_permalink(); ?> で指定。
twitterのボタン設置
以下サイトで設定
http://twitter.com/goodies/tweetbutton
コード例
これは個別記事のURLを持ってきてくれるので指定なし。「data-via」に入れたアカウント宛のメンションとなります。
facebookのボタン設置
以下サイトで設定
http://developers.facebook.com/docs/reference/plugins/like/
コード例
>&layout=button_count&show_faces=true&width=80&action=like&colorscheme=light&height=21″ scrolling=”no” frameborder=”0″ style=”border:none; overflow:hidden;
width:80px; height:21px;” allowTransparency=”true”></iframe>
こちらも、個別記事に設置するので <?php the_permalink(); ?> 。