Answers for "acf get options fields"

PHP
0

get option field acf

<?php

$variable = get_field('field_name', 'option');

// do something with $variable

?>
Posted by: Guest on February-18-2021
2

acf get field

$value = get_field( "text_field" );

if( $value ) {
    echo $value;
} else {
    echo 'empty';
}
Posted by: Guest on June-29-2020
0

acf get field

<?php echo get_field( "text_field" );?>
Posted by: Guest on October-21-2021

Browse Popular Code Answers by Language