Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Shortcode for a author

// Add Shortcode
function custom_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'user' => 'NLT',
		),
		$atts
	);

	<user>tst $atts

}
add_shortcode( 'User', 'custom_shortcode' );