Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Header Redirect

// Add Shortcode
function custom_shortcode() {

	$id = "example.com";
	header(Location: http://www." . "$id");
	exit;

}
add_shortcode( '', 'custom_shortcode' );