Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

avatar

用户头像

// Add Shortcode
function sc_avatar( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'src' => '/wp-content/uploads/2021/12/1639132779-1613973033-avatar-boy.svg',
			'width' => '40',
		),
		$atts,
		'avatar'
	);

	// Return custom embed code
	return '<img 
	         class="uk-preserve-width uk-border-circle"
	         src="' . $atts['src'] . '"
	         width="' . $atts['width'] . '">';

}
add_shortcode( 'avatar', 'sc_avatar' );