Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Social Buttons

// Add Shortcode
function social_button_shortcode( $atts ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'id' => '',
		), $atts )
	);

	// Code
return '<embed 
		src="' . $src . '"
		width="' . $width . '"
		height="' . $height . '"
		type="application/x-shockwave-flash"
		allowscriptaccess="always"
		allowfullscreen="true">';

}
add_shortcode( 'social-buttons', 'social_button_shortcode' );