[[Add Twitter, Facebook Like, Google plus one Social share]tf_display.php に Grow! ボタンを加える

まず、やることの1つ目は「」直上なので安易に footer.php に入れました。
こんな感じ。(xxxxxx は API Key)

<script type="text/javascript" src="http://growbutton.com/javascripts/button.js?apikey=xxxxxx&insert=false"></script>

</body>
</html>


2つ目、Wordpress の URL とページタイトルを取得できるようにするには、URL が $post_link でタイトルが $post_title になる。
これを tf_display.php に入れるとこんな感じ。

$output .= '
<div style="float:left; width:115px;padding-right:10px; margin:4px 4px 4px 4px; height:30px;">
	<span itemscope itemref="rectangle" itemtype="http://growbutton.com/ns#button">
	<span itemprop="url">' .$post_link.'</span>
	<span itemprop="title">'.$post_title.'</span>
	</span>
</div>';

で、このコードを はてぶボタンの次に表示する様に tf_display.php に挿入すれば OK!
(更に自分は、今まで「はてぶボタン」の横幅が 115px と大きかったので、85px に修正して横に広がり過ぎないようにしました。)


結果、こんな感じで表示されます。