Skip to content

Instantly share code, notes, and snippets.

@jadealombro
Last active June 27, 2021 08:29
Show Gist options
  • Save jadealombro/9aebca4fbe8b0174323a271692a4f642 to your computer and use it in GitHub Desktop.
Save jadealombro/9aebca4fbe8b0174323a271692a4f642 to your computer and use it in GitHub Desktop.
Add Telegram to the social icons of X Theme
<?php
add_filter('x_social_global_after', 'add_custom_social', 10, 2);
function add_custom_social($output) {
$telegram_link = '#';
$telegram = '<a href="' . $telegram_link . '" class="telegram" title="Telegram" target="_blank"><i class="x-icon-telegram" data-x-icon-b="&#xf2c6;" aria-hidden="true"></i></a>';
$output .= $telegram;
return $output;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment