Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Creator Short Code

// Add Shortcode
function creator_shortcode( $atts , $content = null ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'imageurl' => '',
			'name' => '',
			'twitter' => '',
		), $atts )
	);

	// Code
return '<img class="size-full img-circle" src="' .$imageurl .'" alt="thumb" width="80" height="80" /><strong>' .$name .'</strong>
<a href="https://twitter.com/' .$twitter .'" target="_blank"><i class="icon-tiny icon-twitter accent-color"></i>@' .$twitter .'</a>';
}
add_shortcode( 'creator', 'creator_shortcode' );