WordPressテーマ内でソーシャルリンクを設定する


WordPressで各ソーシャルへのリンクを設定することがありますが、今回はそのコードをメモとしてまとめておきます。

テーマの該当部分に貼り付けることで使えます。

Twitter

 <a href="http://twitter.com/share?text=<?php the_title(); ?>&url=<?php the_permalink(); ?>" onclick="window.open(this.href, 'tweetwindow', 'width=550, height=450,personalbar=0,toolbar=0,scrollbars=1,resizable=1'); return false;">Twitter</a> 

Facebook

 <a href="http://www.facebook.com/sharer.php?u=<?php the_permalink(); ?> t=<?php wp_title('|', true, 'right'); ?> <?php the_permalink(); ?>" onclick="window.open(this.href, 'FBwindow', 'width=650, height=450, menubar=no, toolbar=no, scrollbars=yes'); return false;">Facebook</a> 

Google Plus

 <a href="https://plus.google.com/share?url={<?php the_permalink(); ?>}" onclick="window.open(this.href, 'Gwindow', 'width=650, height=450, menubar=no, toolbar=no, scrollbars=yes'); return false;">Google Plus</a> 

コメントを残す