共有プラグイン
次のコードをサイトのheadタグ内に追加します:
            <script>
              function SocialShare(url) {
                  window.open('https://ifvex.com/share?url=' + url, '', 'height=600,width=800');
              }
            </script>
            
次に、ページのHTMLに共有するURLを変更した後、共有ボタンを配置します:
<button onclick="SocialShare('http://yoursite.com/')">Share</button>
Also you can use this code to share the current page:
<button onclick="SocialShare(window.location.href)">Share</button>
例: