Informations
Thoses functions get/display ACF field values. You need to create them before in ACF, and fill them.
Code
// Display the field value
<?php the_field(‘field_name’); ?>
// Get the field value only, no display
<?php get_field(‘field_name’); ?>