Skip to content

Instantly share code, notes, and snippets.

@jmabbas
Last active June 21, 2022 06:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmabbas/6d1d82040a830d856352844c08606498 to your computer and use it in GitHub Desktop.
Save jmabbas/6d1d82040a830d856352844c08606498 to your computer and use it in GitHub Desktop.
Techmarket Add footer social icons
add_filter( 'techmarket_set_social_networks', 'tm_child_add_vkontakte', 90 );
function tm_child_add_vkontakte( $args ) {
$args['tiktok'] = array(
'label' => 'Tiktok',
'icon' => 'fab fa-tiktok',
'id' => 'tk_link',
'link' => 'https://www.tiktok.com/'
);
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment