Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Homedir WP

// Add Shortcode
function homedirectory( $atts ) {

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

	// Code
return esc_url( home_url( '/${atts}' ) ); 
}
add_shortcode( 'homedir', 'homedirectory' );