Support

Account

Home Forums Add-ons Flexible Content Field Get flexible layout field subfield outside loop Reply To: Get flexible layout field subfield outside loop

  • Somewhere before the loop you can do the following

    
    $queried_object = get_queried_object();
    $post_id = $queried_object->ID;
    // get all the values for your flexible content field using the id above
    // and store the values in variables to use in conditional statements
    // example: get_field('some_field_name', $post_id);