SNSシェアボタンの設置

  • シェアリンク URL は、ワードプレス利用前提です
  • WP 以外の利用も考えると、JS で動的に生成した方が良いのかもしれない

各 SNS のシェアリンク URL

  • Facebook
<a class="sns-share__href" href="https://www.facebook.com/share.php?u=<?php the_permalink(); ?>" target="_blank" rel="nofollow noopener noreferrer">
  • Twiter
<a class="sns-share__href" href="https://twitter.com/share?url=<?php the_permalink(); ?>&text=<?php the_title(); ?>" target="_blank" rel="nofollow noopener noreferrer">
  • はてなブックマーク
<a class="sns-share__href" href="https://b.hatena.ne.jp/add?mode=confirm&url=<?php the_permalink(); ?>&title=<?php the_title(); ?>" target="_blank" rel="nofollow noopener noreferrer">
  • LINE
<a class="sns-share__href" href="https://social-plugins.line.me/lineit/share?url=<?php the_permalink(); ?>" target="_blank" rel="nofollow noopener noreferrer">