Support

Account

Home Forums Add-ons Options Page Create a group field in options page Reply To: Create a group field in options page

  • to get a value from an options you need to supply ‘options’ as the post id in get_field()

    
    <?php
    $hero = get_field('test', 'option');	
    if( $hero ): ?>
    <?php echo $hero['gruppotest']; ?>
    <?php endif; ?>