Support

Account

Home Forums General Issues Mathematical operation in ACF field Reply To: Mathematical operation in ACF field

  • Use ‘get_field();’

    <?php
    $x1 = get_field('eye');
    $x2 =  get_field('movement');
    $x3 =  get_field('verbal'); 
    $x4 = $x1+$x2+$x3 ;
    echo  "</br> Value is $x4" ; 
    ?>