Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Display an Advance Custom Field

// Add Shortcode
function scholarship_field_shortcode( $atts ) {

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

	the_field('field_key');

}
add_shortcode( 'scholarship_field', 'scholarship_field_shortcode' );