Support

Account

Home Forums ACF PRO Check if any choices is selected of a checkbox Reply To: Check if any choices is selected of a checkbox

  • Hello,

    Thanks for replying. With this I get all posts with a option selected. But I am looking for a way to make a list of the selected options of a checkbox field.

    for example:
    checkbox field has the options: red, blue and green
    post1 has red and post2 has green
    And then I get a list with the options red and green

    Something like :
    $terms = get_terms( array( 'taxonomy' => 'category', 'hide_empty' => true, ) );

    But than for a checkbox field.