yes : да
no : нет
<?php if ( get_field('contacts_radio') == 'yes' ) : ?>
<?php get_template_part( 'page-templates/contacts' ); ?>
<?php endif; ?>
Get a value from a specific post
This example shows how to load the value of field ‘text_field’ from the post with ID = 123.
$value = get_field( "text_field", 123 );