Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Show venue city

// Add Shortcode
function show_venue_city( $atts ) {

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

	// Return only if has ID attribute
	if ( isset( $atts['id'] ) ) {
		return '<a href="' . get_permalink( $atts['id'] ) . '">' . get_the_title( $atts['id'] ) . '</a>';
	}

}
add_shortcode( '[venue-city]', 'show_venue_city' );