Skip to content

Instantly share code, notes, and snippets.

@alexanderjsingleton
Last active December 30, 2015 17:19
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 alexanderjsingleton/d3216b4b1735394c491a to your computer and use it in GitHub Desktop.
Save alexanderjsingleton/d3216b4b1735394c491a to your computer and use it in GitHub Desktop.
Retooling a php hash-table to accommodate over 72 [social-media buttons](http://tomswebspace.com/round-social-media-icons/).
//Member social
function member_social($atts, $content = null)
{
extract(shortcode_atts(array("twitter" => "", "facebook" => "", "github" => "", "linkedin" => ""), $atts));
$html = "\n".'<nav class="team-social text-center">
<a target="_blank" href="http://twitter.com/'.$twitter.'"><img title="Twitter" alt="renova" src="'.get_stylesheet_directory_uri().'/images/social/cool/round/twitter.png"></a>
<a target="_blank" href="http://facebook.com/'.$facebook.'"><img title="Facebook" alt="renova" src="'.get_stylesheet_directory_uri().'/images/social/cool//round/facebook.png"></a>
<a target="_blank" href="http://linkedin.com/in/'.$linkedin.'"><img title="LinkedIn" alt="renova" src="'.get_stylesheet_directory_uri().'/images/social/cool//round/linkedin.png"></a>
<a target="_blank" href="http://github.com/'.$github.'"><img title="GitHub" alt="renova" src="'.get_stylesheet_directory_uri().'/images/social/cool//round/github.png"></a>
</nav>';
return $html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment