tutor
tutor copied to clipboard
Telegram sharing button
Please add Telegram to social sharing buttons 🙏
https://t.me/share/url?url={url}&text={text}
/**
* @param string $url Absolute URL to share, e.g. "https://example.com/path/to/article?with=params"
* @param string $text Optional comment to share URL with, e.g. "Check out this article!"
* @return string Button HTML markup, feel free to modify to your taste
*/
function telegramForwardButton($url, $text = '') {
$share_url = 'https://t.me/share/url?url='.rawurlencode($url).'&text='.rawurlencode($text);
return "<a href=\"{$share_url}\">Share</a>";
}
https://core.telegram.org/widgets/share
+1