Support

Account

Home Forums ACF PRO How to show field True/False in admin column for custom post type Reply To: How to show field True/False in admin column for custom post type

  • Wow, sorry for that. It was the uppercase “F” and yes the code:

    if(get_field('featured')) {
    echo 'Yes';
    } else {
    echo 'No';
    }

    does work. Thanks Mediawerk