+1 ボタンは
簡単に言うと、Google版「いいね!」ボタンのことです。
http://www.google.com/intl/ja/webmasters/+1/button/
のジェネレーターより作成してhtmlを編集することでWEBサイト内に追加することができます。
テーマ内のfunctions.phpに下のコードを追記保存するとhtml編集せずにGoogle+1ボタンを投稿記事内に挿入することができます。
挿入場所は本文の終わり後です。
[php]
add_filter(‘the_content’, ‘wpr_google_plusone’);
function wpr_google_plusone($content) {
$content = $content.'<div class="plusone"><g:plusone size="tall" href="’.get_permalink().’"></g:plusone></div>’;
return $content;
}
add_action (‘wp_enqueue_scripts’,’wpr_google_plusone_script’);
function wpr_google_plusone_script() {
wp_enqueue_script(‘google-plusone’, ‘https://apis.google.com/js/plusone.js’, array(), null);
}
[/php]
size=”talll”の部分を[small],へ変更すると+1ボタンの大きさを変更できます。
■参照URL
WordPress hook: Automatically add a Google+ button to your posts
コメント