RyoSugimoto
9/21/2014 - 4:01 AM

SNSなどのシェアやフォローのボタンをWordPressで設置する場合。

SNSなどのシェアやフォローのボタンをWordPressで設置する場合。

<a class="twitter" href="http://twitter.com/intent/tweet?text=<?php
echo trim(wp_title( '', false));
?>&nbsp;|&nbsp;&amp;url=<?php
echo get_permalink();
?>" onclick="window.open(encodeURI(decodeURI(this.href)), 'tweetwindow', 'width=550, height=450, personalbar=0, toolbar=0, scrollbars=1, resizable=1' ); return false;" target="_blank">ツイート</a>

<a class="facebook" href="http://www.facebook.com/share.php?u=<?php
echo home_url();
?>" onclick="window.open(this.href, 'window', 'width=550, height=450,personalbar=0,toolbar=0,scrollbars=1,resizable=1'); return false;">Facebookでシェア</a>

<a class="hatena" href="http://b.hatena.ne.jp/add?mode=confirm&url=<?php
echo get_permalink();
?>&title=<?php
echo trim(wp_title( '', false));
?>" target="_blank">はてなブックマーク</a>

<a class="pocket" href="http://getpocket.com/edit?url=<?php
echo home_url();
?>&title=<?php
bloginfo('name');
?>" onclick="window.open(this.href, 'FBwindow', 'width=550, height=350, menubar=no, toolbar=no, scrollbars=yes'); return false;">Pocketに保存</a>