Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Test

test

// Add Shortcode
function footer_data( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'Address' => '',
			'Phone Number' => '',
			'Email' => '',
		),
		$atts
	);

}
add_shortcode( 'Footer Data', 'footer_data' );