This is using WordPress lingo - but is more of a core PHP based question. I have an option in my site backend that I am storing a specific Location (a WordPress custom post type) as the "headquarters". I am storing the value as such:
function options_headquarters() {
foreach(get_field('option_headquarters','options') as $post_object) {
$options_headquarters = $post_object->ID;
return $options_headquarters;
}
}
What I am fuzzy on is - since my option is only allowed to grab one value (option is configured to just be a single dropdown) -- is there an alternative to using a foreach statement (to grab just a specific array value) and still applying it to the post_object?
Thanks!