Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

LKNM Property Status Plugin

// Add Shortcode
function property_status_csc() {

	if( get_field('property_status') === 1 ) {
	    $message = 'Sold';
	    echo <h3 class="property__status">$message</h3>;
	} else {
	    $message = 'Available Now';
	    echo <h3 class="property__status">$message</h3>;
	}

}
add_shortcode( 'This Property Status', 'property_status_csc' );