Skip to content

Instantly share code, notes, and snippets.

@wolfthemes
Created October 19, 2017 18:24
Show Gist options
  • Select an option

  • Save wolfthemes/4a7a92f69be2b8a1a997d16001950129 to your computer and use it in GitHub Desktop.

Select an option

Save wolfthemes/4a7a92f69be2b8a1a997d16001950129 to your computer and use it in GitHub Desktop.
/**
* Add a social serveice to the team member element
*
* @param array $socials
* @return array $socials
*/
function add_team_member_social( $socials ) {
$socials[] = 'soundcloud';
return $socials;
}
add_filter( 'wvc_team_member_socials', 'add_team_member_social', 40 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment